清除代码中的svn文件。

@echo on   
color 2f   
mode con: cols=80 lines=25   
@REM   
@echo 正在清理SVN文件,请稍候......   
@rem 循环删除当前目录及子目录下所有的SVN文件   
@rem for /r . %%a in (.) do @if exist "%%a.svn" @echo "%%a.svn"   
@for /r . %%a in (.) do @if exist "%%a.svn" rd /s /q "%%a.svn"   
@echo 清理完毕!!!   
@pause   

 将这个文件命名为a.bat,然后放在项目目录中,双击执行即可 

原文地址:https://www.cnblogs.com/hark0623/p/8482469.html