Backblaze backend includes --b2-version-at flag for viewing repository at a specific time (e.g. a week ago). It can be used to list directories or copy directories, returning past snapshots.
However, when I try to copy individual files with it (as opposed to directories), in my tests it would not work, always returning the last file version. Maybe, copyto internally selects a file by the names returned with --b2-versions, such that original file name (without appended timestamp) always matches the last version.
Do you think this is expected behavior and not me doing something wrong? If it's expected, would it make sense to make copyto support --b2-version-at?
Hi, thank you! copy works indeed, but as far as I understand, intended command for copying single files is copyto, as the rclone copy doc says:
To copy single files, use the copyto command instead.
copy is a bit inconvenient in copying individual files, as filters need to be used, and the files cannot be renamed on copying (which was my original use case). But it can be worked around, of course. I just wonder if copyto is really not a well-supported command, and if so, maybe it should be mentioned in the doc?