@echo off set work_path="%~dp0" for /R %%s in (*.txt,*.log) do ( del /f "%%s" ) pause
该批处理会删除它所在目录及其所在目录子目录下的*.log文件和*.txt文件
@echo off set work_path="%~dp0" for /R %%s in (*.txt,*.log) do ( del /f "%%s" ) pause
该批处理会删除它所在目录及其所在目录子目录下的*.log文件和*.txt文件