Is it not possible download all files from one S3 bucket?

0

Hi, just started on AWS. Created a S3 bucket with couple of files (png & mov) earlier. Now I wanted to download all files, butdownload button only available if I select one file only. Am I not able to download all files in the bucket at once? Thanks, Axel

已提問 1 年前檢視次數 6729 次
1 個回答
2

Hello,

to download an entire s3-bucket/all files you have to use the cli with the s3 sync command:

aws s3 sync s3://my_bucket_xy

But for that you need to install the awscli on your local computer and also create an access key for your user to connect from your cli to AWS:

A faster approach is probably by directly using the AWS Cloudshell (the little cli-symbol on topright of your aws console) and run the s3 sync command there into a specific folder:

aws s3 sync s3://my_bucket_xy /bucketcontent

... then zipping the downloaded content.

zip -r zipped-bucketcontent.zip /bucketcontent

... then download the zip directly in the AWS Cloudshell to your local computer -> Actions -> Download File -> Enter the filepath of zipped-bucketcontent.zip

for more infos see here: https://docs.aws.amazon.com/cloudshell/latest/userguide/multiple-files-upload-download.html

profile picture
HeikoMR
已回答 1 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南