I was working in a application which contained many “.svn” folder and
so i wanted to delete all the folders at once so i fired this command
It will delete all the folders recursively
FOR /R . %f IN (.svn) DO RD /s /q %f

How to delete all .svn folders using Windows Command Prompt?
No comments:
Post a Comment