用bat 删除当前文件夹下的某类文件

@echo on
for /r %%f in (*.pdb,*.xml) do del %%f

  

保存为bat文件执行!

原文地址:https://www.cnblogs.com/simadi/p/5714796.html