How to rename files and folder in Amazon S3?

后端 未结 19 2326
暖寄归人
暖寄归人 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:44

    To rename a folder (which is technically a set of objects with a common prefix as key) you can use the aws cli move command with --recursive option.

    aws s3 mv s3://bucket/old_folder s3://bucket/new_folder --recursive

提交回复
热议问题