Rclone Sync Vs Copy 2021
By understanding these semantics, you can build reliable, automated data transfers without accidental loss.
This guide explores the mechanics, the "gotchas," and the best practices for each. rclone sync vs copy
"Make the destination look like the source, but keep everything else." By understanding these semantics, you can build reliable,
This behavior makes copy ideal for incremental backups or "pooling" data from multiple sources into one location. It is an additive process; the destination only grows or updates, never shrinks. If you are worried about human error—such as accidentally deleting a local folder and wanting to ensure the cloud version remains intact— copy is the correct choice. It is an additive process; the destination only
/destination/ file1.txt file3.txt legacy.dat
If you delete a file on your Source, rclone copy will not delete it from your Destination.
copy is inherently safer for beginners or automated scripts where the source might be unstable. Conclusion