programming faqs interview questions tech technical educational freshers guide preparation interviews hr telephonic
try another color:
try another fontsize: 60% 70% 80% 90%
Programming FAQs

How to delete all .svn folders from project

- Open text editor - copy

- Open text editor

- copy and paste below text

Windows Registry Editor Version 1.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN]
@="Delete SVN Folders"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN\command]
@="cmd.exe /c \"TITLE Removing SVN Folders in %1 && COLOR 9A && FOR /r \"%1\" %%f IN (.svn) DO RD /s /q \"%%f\" n\""

- Save the file as deletesvn.reg

- Double click on deletesvn.reg file

It prompts alert box saying" Are you sure you want to add the information deletesvn.reg to the registry?

- click on yes

- it shows alert saying "Information in deletesvn.reg has been successfullly entered into the registry"

- right click on any folder you can see "Delete SVN folders" menu item.

- when you click on "Delete SVN folders" it deletes all instances of .svn in that folder and subfolders.

Linux find . -name ".svn"

Linux

find . -name ".svn" -type d -exec rm -rf {}