Created
October 10, 2014 10:48
-
-
Save jeremypage/08956facc1c65e094ffb to your computer and use it in GitHub Desktop.
Command line tool to delete folder with a specified name recursively in Windows
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 (_svn) 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
Sourced from StackOverflow