Best way to move files between S3 buckets?

前端 未结 12 2104
暗喜
暗喜 2020-12-07 11:09

I\'d like to copy some files from a production bucket to a development bucket daily.

For example: Copy productionbucket/feed/feedname/date to developmentbucket/feed/

12条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-07 11:14

    For me the following command just worked:

    aws s3 mv s3://bucket/data s3://bucket/old_data --recursive
    

提交回复
热议问题