Remove SVN subfolders on Windows xp / vista
Create a new bat file in the root directory. Called remove_svn_sub_folders.bat,
paste the following text.
for /f “tokens=* delims=” %%i in (‘dir /s /b /a:d *svn’) do (
rd /s /q “%%i”
)
Then execute. It will delete all sub folders with .svn.
Search tags: delete .svn sub folders, remove .svn windows.
