[20180319]windows批處理檔案大小比較.txt
[20180319]windows批處理檔案大小比較.txt
--//我使用eDiary寫日誌,有時候為了安全期間,我在隨身碟保留一份備份.
--//需要同步,但是eDiary有一個"問題"就是如果開啟日記本,沒有任何操作,都會修改檔案的時間戳.
--//不能簡單使用xcopy /d/y複製.一般情況下增加內容,日記檔案會變大,也就是要複製前先判斷檔案是否大於目的.
--//看了一些文章,編寫批處理指令碼如下:
@ echo off
for /f "delims=" %%i in ('dir /s/b %edf%\2018.edf') do (
set lsize=%%~zi
)
for /f "delims=" %%i in ('dir /s/b U:\edf\2018.edf') do (
set usize=%%~zi
)
@ echo on
d:
echo start sync edf and notes from usb
if %usize% gtr %lsize% (
echo xcopy /d/y U:\edf\2018.edf %edf%\2018.edf
xcopy /d/y U:\edf\2018.edf %edf%\2018.edf
)
pause
--//我定義環境變數edf,這樣通用性好一些.
D:\tools> echo %edf%
"E:\Program Files (x86)\eDiary-3.3"
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/267265/viewspace-2151981/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Windows批處理檔案Windows
- 07 Windows批處理之檔案操作Windows
- windows刪除檔案的批處理操作Windows
- windows 批處理把所有java原始碼匯入一個txt檔案中WindowsJava原始碼
- window 批處理檔案
- 批處理檔案命令
- bat批處理檔案BAT
- 10 Windows批處理之呼叫例程和bat檔案WindowsBAT
- windows刪除幾天前檔案的批處理命令Windows
- 切換IP批處理檔案
- Python批處理:檔案操作Python
- Windows批處理命令Windows
- python處理txt檔案Python
- Windows批處理學習(二)——批處理(3)薦Windows
- Windows使用批處理給手機批量安裝apk檔案WindowsAPK
- Windows bat批處理刪除指定N天前的檔案WindowsBAT
- 編寫簡單的windows bat批處理指令碼檔案WindowsBAT指令碼
- [20170425]變態的windows批處理1.txtWindows
- [20170425]變態的windows批處理2.txtWindows
- windows批處理之一:字串處理Windows字串
- windows自動登入telnet批處理檔案VBS法(Windows Script Host)Windows
- windows系統DLL檔案全恢復到初始化狀態批處理檔案。Windows
- 批處理檔案 bat 後臺執行BAT
- 用批處理檔案執行備份
- bat批處理轉換成exe檔案BAT
- [20171225]變態的windows批處理4.txtWindows
- [20160222]windows批處理執行方式.txtWindows
- Windows批處理命令專題Windows
- windows sql loader批處理WindowsSQL
- shell指令碼——比較兩個檔案大小、許可權指令碼
- MongoDB for Windows使用批處理檔案啟動閃退之空格惹的禍MongoDBWindows
- Jenkins執行批處理檔案失敗Jenkins
- [20210510]變態的windows批處理7.txtWindows
- 批處理檔案(bat檔案)註冊dll批量註冊dllBAT
- windows批處理之五-for語句中的檔名擷取Windows
- 開啟windows批處理大門Windows
- 部分Windows批處理指令碼整理Windows指令碼
- windows批處理之三:for迴圈Windows