Created
June 23, 2012 00:08
-
-
Save alimbada/2975897 to your computer and use it in GitHub Desktop.
Recursively nukes bin and obj directories in a source/directory tree.
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 (bin,obj) do @if exist "%%d" rd /s/q "%%d" | |
REM Remove extra %s if you want to run command straight from the command line, i.e. | |
REM for /d /r . %d in (bin,obj) do @if exist "%d" rd /s/q "%d" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment