github.com/10XDev/rclone@v1.52.3-0.20200626220027-16af9ab76b2a/docs/content/commands/rclone_settier.md (about) 1 --- 2 title: "rclone settier" 3 description: "Changes storage class/tier of objects in remote." 4 slug: rclone_settier 5 url: /commands/rclone_settier/ 6 # autogenerated - DO NOT EDIT, instead edit the source code in cmd/settier/ and as part of making a release run "make commanddocs" 7 --- 8 # rclone settier 9 10 Changes storage class/tier of objects in remote. 11 12 ## Synopsis 13 14 15 rclone settier changes storage tier or class at remote if supported. 16 Few cloud storage services provides different storage classes on objects, 17 for example AWS S3 and Glacier, Azure Blob storage - Hot, Cool and Archive, 18 Google Cloud Storage, Regional Storage, Nearline, Coldline etc. 19 20 Note that, certain tier changes make objects not available to access immediately. 21 For example tiering to archive in azure blob storage makes objects in frozen state, 22 user can restore by setting tier to Hot/Cool, similarly S3 to Glacier makes object 23 inaccessible.true 24 25 You can use it to tier single object 26 27 rclone settier Cool remote:path/file 28 29 Or use rclone filters to set tier on only specific files 30 31 rclone --include "*.txt" settier Hot remote:path/dir 32 33 Or just provide remote directory and all files in directory will be tiered 34 35 rclone settier tier remote:path/dir 36 37 38 ``` 39 rclone settier tier remote:path [flags] 40 ``` 41 42 ## Options 43 44 ``` 45 -h, --help help for settier 46 ``` 47 48 See the [global flags page](/flags/) for global options not listed here. 49 50 ## SEE ALSO 51 52 * [rclone](/commands/rclone/) - Show help for rclone commands, flags and backends. 53