Skip to content

Instantly share code, notes, and snippets.

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