Skip to content

Instantly share code, notes, and snippets.

@cdpath
Created October 25, 2016 15:55
Show Gist options
  • Save cdpath/bd14ceb7701b77dbb09519e9d8736be2 to your computer and use it in GitHub Desktop.
Save cdpath/bd14ceb7701b77dbb09519e9d8736be2 to your computer and use it in GitHub Desktop.
remove kindle unnecessary dirs
@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