Created
September 14, 2021 19:42
-
-
Save najathi/bc11473942e164912c9329d6acbfd591 to your computer and use it in GitHub Desktop.
Downloading an entire AWS 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. | |
1. install aws cli (and select your operating system , follow the steps) https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html | |
2. check aws version: aws --version | |
3. run config command: aws configure | |
4. aws s3 cp s3://yourbucketname your\local\path --recursive | |
Eg (Windows): aws s3 cp s3://yourbucketname C:\aws-s3-backup\webuybrokenphones --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