When you have to remove all .svn directories from a project with many sub-directories, you could do it manually, but why not use our nice friend called command-line?
On Unix-based OS’s you can find many examples of many ways to do this, but on Windows I could not find one (very easily). So I tried to create one myself with some “for … in … do” magic. And here it is:


for /d /r "c:\path\to\project" %a in (*.svn) do rd %a /s /q