Created
August 26, 2018 15:47
-
-
Save vforge/f80f0a70d44afdc1bc24b6bbeaefd036 to your computer and use it in GitHub Desktop.
Delete all empty subdirectories in windows command line
This file contains hidden or 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