Created
April 30, 2016 06:52
-
-
Save tombasche/662356fc813d2ba33040d6653ccb074b to your computer and use it in GitHub Desktop.
Run in a directory to remove all empty folders (in windows)
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
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