I'd like to freeze (cold ⇥ archive) Azure storage blob files. Some are already in archive tier, some in cool. Is there a way to do this easily, ie. to change tier of all cool files to archive (without touching files already in archive tier)?
I think you can try to list files in specific tier:
rclone lsf --format p --files-only --recursive --metadata-include "*cool*" remote: > cool_files.list
and then use --files-from cool_files.list
in other operations.
Or use --metadata-include
flag directly.
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.