How to rename files and folder in Amazon S3?

后端 未结 19 2332
暖寄归人
暖寄归人 2020-11-28 03:01

Is there any function to rename files and folders in Amazon S3? Any related suggestions are also welcome.

19条回答
  •  执念已碎
    2020-11-28 03:18

    You can either use AWS CLI or s3cmd command to rename the files and folders in AWS S3 bucket.

    Using S3cmd, use the following syntax to rename a folder,

    s3cmd --recursive mv s3://// s3:///
    

    Using AWS CLI, use the following syntax to rename a folder,

    aws s3 --recursive mv s3://// s3:///
    

提交回复
热议问题