mirror of
https://gitee.com/clygintang/Dockfile-Coreseek.git
synced 2025-07-21 00:00:15 +08:00
19 lines
405 B
Batchfile
Executable File
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
|
|
)
|