Tuesday, July 17, 2012

How to Delete all .svn folders using Windows Command Prompt



You can use the following command to delete all .svn folders in curent directory recursively.

FOR /R . %f IN (.svn) DO RD /s /q %f

Share Article : How to Delete all .svn folders using Windows Command Prompt
Share/Save/Bookmark

0 comments:

Post a Comment