Skip to content

Instantly share code, notes, and snippets.

@leegould
Created January 26, 2012 14:02
Show Gist options
  • Save leegould/1682893 to your computer and use it in GitHub Desktop.
Save leegould/1682893 to your computer and use it in GitHub Desktop.
Script - Batch - Remove .svn folders
dir *.svn /b /A:HD /S > svn-files.txt
for /F "eol=;" %i IN (svn-dirs.txt) DO rmdir %i /q /s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment