Sunday, May 28, 2017

Remove all SVN files in a directory and sub-directories




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

No comments:

Post a Comment