ฉันใช้คำสั่ง ROBOCOPY และสร้างบรรทัดคำสั่งเพื่อทำการซิงค์ระหว่าง 2 โฟลเดอร์ (ซิงค์เพิ่มขึ้น) คำสั่งของฉันเป็นแบบนี้
ROBOCOPY "Source_Folder" "Destination_Folder" /E /ZB /XJ /XF "~*.*" "*~.*" "desktop.ini" "Thumbs.db" "*.torrent" ".lock" ".Sync*" /xd "Rubbish" ".Sync*" ".Box Sync" "_private" "Outlook Files" /FFT /MT /R:2 /W:5 /V /MON:1 /TEE
(ไม่รวมไฟล์:) "~*.*" "*~.*" "desktop.ini" "Thumbs.db" "*.torrent" ".lock" ".Sync*"
(ไม่รวมโฟลเดอร์รวมถึงไฟล์ในโฟลเดอร์เหล่านี้:) "Rubbish" ".Sync*" ".Box Sync" "_private" "Outlook Files"
นอกจากนี้ยังเป็นการทำซ้ำตัวเองทุกนาทีและ / หรือการเปลี่ยนแปลงไฟล์ / โฟลเดอร์เดียว
ขอแสดงความนับถือ Rizwan
ธง
/E Copy subdirectories, including empty ones.
/ZB Use restartable mode; if access denied use backup mode.
/XJ Exclude junction points. (normally included by default).
/FFT Assume FAT file times (2-second granularity).
/MT Do multi-threaded copies with 8 threads.
/R:2 Number of retries on failed copies.
/W:5 Wait time between retries.
/V Produce verbose output, showing skipped files.
/TEE Output to console window, as well as the log file.
/MON:1 Monitor source; run again when more than 1 change seen.
/XF [files] Exclude files matching given names/paths/wildcards.
/XD [dirs] Exclude directories matching given names/paths.