Copr or Sync? Crypt to crypt

Hi, im looking to move data from Gsuite Google drive to Microsoft OneDrive.

I have about 17TB of Data to move, what would be the best way to transfer from Crypt Google Drive to Crypt Microsoft OneDrive?

Is there a way to check if the file is already there? And if so skip over it?

Thanks

Shenn

hi,

best to transfer the crypted files from gdrive to onedrive as documented at
https://rclone.org/crypt/#backing-up-a-crypted-remote

if the identical file exists in the source and dest
rclone sync/copy
--- rclone does not copy the file from source to dest
--- rclone does not delete the source file

rclone move
--- rclone does not move the file from source to dest
--- rclone does delete the source file

rclone copy gdrive:crypt odrive:crypt -vv 
DEBUG : piviejsu06b8311vk99cqb1t6c: Size and modification time the same (differ by -502ms, within tolerance 1s)
DEBUG : piviejsu06b8311vk99cqb1t6c: Unchanged skipping
INFO  : There was nothing to transfer

rclone move gdrive:crypt odrive:crypt -vv 
DEBUG : piviejsu06b8311vk99cqb1t6c: Size and modification time the same (differ by -502ms, within tolerance 1s)
DEBUG : piviejsu06b8311vk99cqb1t6c: Unchanged skipping
INFO  : piviejsu06b8311vk99cqb1t6c: Deleted
INFO  : There was nothing to transfer

============================

note: i could be wrong but in your case, rclone will not check the hashes as gdrive uses MD5 and onedrive uses SHA1 or QuickXorHash.

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