Skip to content

Instantly share code, notes, and snippets.

@jeremypage
Created October 10, 2014 10:48
Show Gist options
  • Save jeremypage/08956facc1c65e094ffb to your computer and use it in GitHub Desktop.
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
for /d /r . %d in (_svn) do @if exist "%d" rd /s/q "%d"
@jeremypage
Copy link
Author

Sourced from StackOverflow

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment