删除某个目录下面特定名字的文件夹

这里是删除名字为.svn的目录

 for /r %a in(.) do @if exist %a\.svn rmdir /s/q %a\.svn

原文地址:https://www.cnblogs.com/zhuzhu_/p/2312161.html