Last active
August 25, 2018 14:47
-
-
Save johnhutchins/90c4102b28a2df923997da9f3a46e97a to your computer and use it in GitHub Desktop.
delete Bin and Obj folders from directory (run in CMD)
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" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome!