ai-business-write/备份数据库.bat

25 lines
488 B
Batchfile
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@echo off
chcp 65001 >nul
echo ========================================
echo 数据库备份工具
echo ========================================
echo.
REM 检查Python是否安装
python --version >nul 2>&1
if errorlevel 1 (
echo 错误: 未找到Python请先安装Python
pause
exit /b 1
)
REM 执行备份
python backup_database.py --compress
echo.
echo ========================================
echo 备份完成!
echo ========================================
pause