Skip to content

Instantly share code, notes, and snippets.

@tombasche
Created April 30, 2016 06:52
Show Gist options
  • Save tombasche/662356fc813d2ba33040d6653ccb074b to your computer and use it in GitHub Desktop.
Save tombasche/662356fc813d2ba33040d6653ccb074b to your computer and use it in GitHub Desktop.
Run in a directory to remove all empty folders (in windows)
for /f "delims=" %%d in ('dir /s /b /ad ^| sort /r') do rd "%%d"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment