Created
September 26, 2018 07:19
-
-
Save Dobby89/6be08bcf6c804dbc3e0e87e09e03335a to your computer and use it in GitHub Desktop.
Delete all directories recursively, from the current directory
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 /d /r . %d in (DIR_NAME_HERE) DO @IF EXIST "%d" echo %d && RMDIR /S /Q %d" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment