The restore
command is used to restore archived objects.
./coscli restore cos://<bucketAlias>[/prefix/] [flag]
Note:
- For more information on
bucketAlias
, see Download and Installation Configuration.- For more general options for this command (such as switching buckets or user accounts), see General Options.
The restore
command contains the following optional flags:
Flag Abbreviation | Flag Full Name | Description |
---|---|---|
None | --include | Includes specific objects |
None | --exclude | Excludes specific objects |
-d | --days | Specifies the expiration time of temporary objects, which is 3 days by default |
-m | --mode | Specifies the restoration mode, which is Standard by default |
-r | --recursive | Traverses the folder recursively |
Note:
--include
and--exclude
support standard regular expression syntax, so you can use them to filter out objects that meet specific criteria.- When using
zsh
, you may need to add double quotes at both ends of thepattern
string.
./coscli restore cos://bucket1/example/ -r --include ".*.mp4"
bucket1
bucket in Standard mode./coscli restore cos://bucket1/picture.jpg
picture
folder in bucket1
bucket in Expedited mode./coscli restore cos://bucket1/picture/ -r --mode Expedited
Note:Before running this command, you need to make sure that all objects in the folder are of the same storage class (such as ARCHIVE). If there are objects in different classes, use
--include
or--exclude
to filter out objects in the same class.
Was this page helpful?