What is the problem you are having with rclone?
I executed rclone copy --s3-version
and then I tried to execute rclone copy
again or rclone ls
with --s3-versions
but I can't copy or see the versioned file.
e.g.
A object storage has
1.txt (current)
1.txt (version create date = 1/2/2023)
1.txt (version create date = 1/2/2023)
and then those files move to B object storage by rclone copy --s3-versions
B object storage has
1.txt
1-v2023-01-02-0000.txt
1-v2023-01-01-0000.txt
when I try to access 1-v2023-01-02-0000.txt with rclone ls --s3-versions
,
but there is nothing to show us.
I can't copy 1-v2023-01-02-0000.txt file to other storage as well.
Run the command 'rclone version' and share the full output of the command.
1.63.1
Which cloud storage system are you using? (eg Google Drive)
custom s3 object storage
Logs
after the versioned files are copied to object storage
rclone ls dev://test2/
51 4-v2023-07-07-082248-000.txt
51 4-v2023-07-19-074649-000.txt
51 4.txt
I copy a versioned file with versions. it's not working
rclone -vv copy dev,versions://test2/4-v2023-07-19-074649-000.txt ./
2023/07/25 19:32:37 INFO : There was nothing to transfer
2023/07/25 19:32:37 INFO :
Transferred: 0 B / 0 B, -, 0 B/s, ETA -
Elapsed time: 0.0s
I copy a versioned file without versions. it's working
rclone -vv copy dev://test2/4-v2023-07-19-074649-000.txt ./
2023/07/25 19:32:02 INFO : 4-v2023-07-19-074649-000.txt: Copied (new)
2023/07/25 19:32:02 INFO :
Transferred: 51 B / 51 B, 100%, 0 B/s, ETA -
Transferred: 1 / 1, 100%
Elapsed time: 0.1s