Last active
February 2, 2018 05:42
-
-
Save cdpath/727a003d8e9268a952d94db8a9a7cfcd to your computer and use it in GitHub Desktop.
clean up extras folders under documents
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