自已的 notebook 不是 24 小時都開著,利用排程等午休睡覺的時間或晚餐的時間開始壓縮後上傳。使用上傳程式 ncftpput,用法參考 FTP Client - ncftp
CODE:
-
@echo off
-
path=%path%;"c:\program files\winrar"
-
:rar
-
set tyear=%date:~0,4%
-
set tmon=%date:~5,2%
-
set tday=%date:~8,2%
-
set SVN=SVN-%tyear%-%tmon%-%tday%.rar
-
echo "Backup SVN %SVN%"
-
rar a -r "D:\%SVN%" D:\Code\SVN\*.*
-
echo "Upload to HostMonster FTP Server"
-
:ftp
-
ncftpput -u 帳號 -p 密碼 xxx.xxx.xxx.xxx pfn/webhd/SVN D:\%SVN%
-
del D:\%SVN%