This is quite Often used by me. While working on some old repository, For me it is very bad to see all those changes while you are experimenting with the repository code. And it is very tedious task to go in each folder and delete the subversion files and folders. That's why I created this Batch file to remove all the subversion files and folders from the current directory and all sub-folders under the tree.
Steps to follow :
Open Any of your favourite text file editor.
Copy and Paste the following code into it.
@echo off
REM @author VISHAL
ECHO "Deleting svn files and folders"
for /f "tokens=* delims=" %%i in ('dir /s /b /a:d *svn') do (
echo "removing %%i"
rmdir /s /q "%%i"
)
3. Save file as del_bat_svn.bat
4. Copy and Paste the file into the folder from which you want to remove the the subversion files and folders.
5. Run the File with double click on it or from command line