2016-12-17 19:39:01 +08:00

19 lines
405 B
Batchfile
Executable File

@echo off
if exist "ubertest.php" (
for /D %%i in (test_*) do (
if exist "%%i\test.xml" (
del /q "%%i\report.txt" 2>nul
rmdir /s /q "%%i\Conf" 2>nul
)
)
del /q "data\*.sp*" 2>nul
del /q "data\*.mvp" 2>nul
del /q "data\*.meta" "data\*.lock" "data\*.kill" "data\*.ram" "data\binlog.*" 2>nul
del /q "*.log" 2>nul
del /q "error*.txt" 2>nul
del /q "config*.conf" 2>nul
)