Is rclone a sync command?

I'm running 'rclone copy' command to copy files from one server to another. If the command returns OK in my terminal, does it mean the copy operations have finished and also on the target side, the data is completed at the same time?

time 1;
rclone copy comand;
time 2;

so (time 2 - time 1) is the total time cost by the data copy, no background data copying, right?

Thanks!

time-2 - 1 is the total time yes. You can add the '-v' or '-vv' flag to see what it is doing.

1 Like

Yes, rclone has copied the data and verified it is there before it returns.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.