Created
October 25, 2016 15:55
-
-
Save cdpath/bd14ceb7701b77dbb09519e9d8736be2 to your computer and use it in GitHub Desktop.
remove kindle unnecessary dirs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
for /f "delims= tokens=1*" %%a in ('dir /b *.sdr') do ( | |
if not exist "%%~na.mobi" ( | |
if not exist "%%~na.azw*" ( | |
if not exist "%%~na.txt" ( | |
if not exist "%%~na.pdf" ( | |
rd /s/q %%a | |
) | |
) | |
) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment