If you need to quickly remove all the svn folders in a directory tree to get a nice clean directory simply open cmd, navigate to the route and then run: for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do ( rd /s /q "%%i" )[source]
I’ve created a little bat... [More]