Saturday, April 24, 2010

Recursively Delete SVN Directories

Just made use of this handy script to recurse a folder and sub-folders deleting the '_svn' folders:

for /d /r . %d in (_svn) do @if exist "%d" rd /s/q "%d"

Source: http://stackoverflow.com/questions/521382/command-line-tool-to-delete-folder-with-a-specified-name-recursively-in-windows

No comments: