Forums / Unrelated / Offtopic / Quick way to remove SVN folders

Quick easy way to remove svn folders, for uploading to a site

Kilandor
#1 2008-12-09 09:22
First Create a new folder, Inside it copy for example the trunk folder into it.
Create a text file name it something like Remove SVN.bat
Edit it and inside put
FOR /F "tokens=*" %%G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q %%G
Save and run it.

This will remove any .svn folder Recrusivly down from where it is ran.

I use this when I want to upload the trunk to a website :)
Dayver
#2 2008-12-10 08:01
Thank you :wink
Pavlo Tkachenko aka Dayver