Last active
April 18, 2022 17:15
-
-
Save najathi/995495eee7f84cb3088a919fba7de737 to your computer and use it in GitHub Desktop.
Downloading an entire S3 bucket?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100% works for me, i have download all files from aws s3 backet. | |
install aws cli (and select your operating system , follow the steps): | |
https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html | |
check aws version: | |
aws --version | |
run config command: | |
aws configure | |
aws s3 cp s3://yourbucketname your\local\path --recursive | |
Eg (Windows OS): | |
aws s3 cp s3://yourbucketname C:\aws-s3-backup\project-name --recursive | |
check out this link: | |
https://www.edureka.co/community/32955/how-to-download-an-entire-bucket-from-s3-to-local-folder |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment