Downloading an entire S3 bucket?

前端 未结 30 1377
天命终不由人
天命终不由人 2020-11-29 14:10

I noticed that there doesn\'t seem to be an option to download an entire S3 bucket from the AWS Management Console.

Is there an easy way to grab everything in one of

30条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-29 15:00

    Try this command:

    aws s3 sync yourBucketnameDirectory yourLocalDirectory

    For example, if your bucket name is myBucket and local directory is c:\local, then:

    aws s3 sync s3://myBucket c:\local

    For more informations about awscli check this aws cli installation

提交回复
热议问题