Skip to content

Instantly share code, notes, and snippets.

@najathi
Last active April 18, 2022 17:15
Show Gist options
  • Save najathi/995495eee7f84cb3088a919fba7de737 to your computer and use it in GitHub Desktop.
Save najathi/995495eee7f84cb3088a919fba7de737 to your computer and use it in GitHub Desktop.
Downloading an entire S3 bucket?
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