Command to remove .svn folders
Place this in a .cmd file on Windows to remove all the .svn folders.
FOR /F “tokens=*” %%G IN (’DIR /B /AD /S *.svn*’) DO RMDIR /S /Q “%%G”
Place this in a .cmd file on Windows to remove all the .svn folders.
FOR /F “tokens=*” %%G IN (’DIR /B /AD /S *.svn*’) DO RMDIR /S /Q “%%G”