Home
Manage Your Code
Snippet: Delete SVN Folders (Other)
Title: Delete SVN Folders Language: Other
Description: This registry script allows you to right-click on a folder in Windows Explorer to delete all svn folders. Views: 258
Author: Dave Donaldson Date Added: 3/2/2008
Copy Code  
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN]
@="Delete SVN Folders"

[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command]
@="cmd.exe /c \"TITLE Removing SVN Folders in %1 && COLOR 9A && FOR /r \"%1\" %%f IN (.svn) DO RD /s /q \"%%f\" \""
Usage
Put this code in a .reg file and then import it into the registry.
Notes
Originally created by Jon Gallway: http://weblogs.asp.net/jgalloway/archive/2007/02/24/shell-command-remove-svn-folders.aspx