Tuesday, October 07, 2008

Delete svn folders /files Recursive Subfolders batch file

Create a batch file with the following code to remove all svn files + folders from your trunk.





FOR /F "tokens=*" %%G IN ('DIR /B /AD /S *.svn*') DO RMDIR /S /Q "%%G"

2 comments:

  1. Thanks you saved me having to think :) works perfectly!

    ReplyDelete
  2. Thank you so much! It was help on time. :)

    ReplyDelete