Skip to content

Instantly share code, notes, and snippets.

@bsa7
Created April 19, 2015 06:58
Show Gist options
  • Save bsa7/48c04c105297b844adbe to your computer and use it in GitHub Desktop.
Save bsa7/48c04c105297b844adbe to your computer and use it in GitHub Desktop.
windows - recursive delete empty folders
for /f "delims=" %%d in ('dir /s /b /ad ^| sort /r') do rd "%%d"
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment