rm
command is used to delete an object../coscli rm cos://<bucket-name>[/prefix/] [flag]
rm
includes the following parameters:Parameter Format | Description | Example |
cos://<bucket-name> | Specifies the target bucket, which is accessible by using the bucket alias or bucket name configured in the configuration file as detailed in Download and Installation Configuration. If you use the bucket name for access, you also need to include the endpoint flag. | Access with the bucket alias: cos://example-alias Access with the bucket name: cos://examplebucket-1250000000 |
/prefix/ | Specifies a directory (optional). | /picture/ |
rm
includes the following optional flags:Flag Abbreviation | Flag Name | Description |
-h | --help | Views the usage of this command. |
None | --include | Includes specific objects. |
None | --exclude | Excludes specific objects. |
-r | --recursive | Specifies whether to traverse all objects in the directory recursively. |
-f | --force | Forces deletion (no prompt before the deletion). |
None | --fail-output | This option determines whether to enable the error output of files when upload or download fails (The default value is true , enabled). If enabled, failed file transfers will be recorded in the specified directory (If no directory is specified, the default directory ./coscli_output is used). If disabled, only the number of failed files will be output to the console. |
None | --fail-output-path | This option is used to specify the error output folder for recording failed file uploads or downloads. By providing a custom folder path, you can control the location and name of the error output folder. If this option is not set, the default error log folder ./coscli_output is used. |
--include
and --exclude
support standard regular expression syntax, so you can use them to filter out objects that meet specific criteria.zsh
, you may need to add double quotes at both ends of the pattern
string../coscli rm cos://bucket1/example/ -r --include ".*.mp4"
./coscli rm cos://bucket1/fig1.png
picture
directory./coscli rm cos://bucket1/pictrue/ -r
Was this page helpful?