Question regarding OneDrive hashing

According to docs, OneDrive for Business support QuickXorHash instead of MD5.

So, when transferring files from Google Drive to OneDrive, Rclone only compare sizes and modtime (not hashes), right? Because Google Drive does not have QuickXorHash (only MD5).

Am I correct, here?

That looks correct to me as they would have to have the same hashes available to compare.

1 Like

BTW If you really want to know what backends support you can do this

$ rclone backend features onedriveb: | jq .Hashes
[
  "QuickXorHash"
]
$ rclone backend features drive: | jq .Hashes
[
  "MD5"
]

You don't need to use jq you can look at the whole output, that is just me using it as a JSON grep tool.

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