본문으로 건너뛰기

"S3" 태그로 연결된 1개 게시물개의 게시물이 있습니다.

모든 태그 보기

How to download all files in a S3 bucket folder

· 약 1분
Daniel G
Developer

Let's say we have a S3 bucket demo_bucket, and we have folder path under that bucket: public/emails/templates. I have 30 files under that path and I want to download all files. In the AWS console, we can only download one file each time.

We can use the AWS CLI to download all the files:

aws s3 cp s3://demo_bucket/public/emails/templates/ .  --recursive