This repository has been archived on 2026-06-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
CLEAN_EVERYTHING/clean_logs.bat
T
2025-01-15 17:57:28 +08:00

19 lines
378 B
Batchfile

@echo off
REM 自动查找Python解释器
where python >nul 2>&1
if %errorlevel% neq 0 (
echo 未找到Python解释器,请确保Python已安装并添加到系统PATH
pause
exit /b 1
)
REM 执行日志清理脚本
python "%~dp0clean_logs.py"
REM 如果执行成功则暂停显示结果
if %errorlevel% equ 0 (
echo.
echo 日志清理完成!
pause
)