一个用于清除loadrunner产生log文件的批处理

@echo off

set work_path="%~dp0"

for /R %%s in (*.txt,*.log) do ( 
del /f "%%s" 
) 
pause

该批处理会删除它所在目录及其所在目录子目录下的*.log文件和*.txt文件

原文地址:https://www.cnblogs.com/onmyway20xx/p/3666802.html