Sunday, 13 January 2013

How to delete all .svn folders using Windows Command Prompt?

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

Ref

No comments:

Post a Comment