- Newest
- Most votes
- Most comments
Since S3 doesn't support wild card characters so there is no direct way of doing that. If you can have files in a single folder within s3 then you can download all files at once by downloading that entire folder through CLI as s3 console won't let you download folder as well.
Here is how you'd download all files within a folder, in this example I'm downloading all files with .gzip extension:
aws s3 cp s3://<bkt_name>/<folder_name>/ ./ --profile <cli_profile_name> --recursive --exclude "*" --include "*.gzip*
See AWS S3 CLI for various exclude-include options along with s3 cp command synopsis.
This may not be the exact thing, that you'd be expecting but this is the way with which you can download multiple files.
Hope you find this usful.
Abhishek
there is a Chrome Extension for doing so (free of charge and no AWS Credentials required - as it does automation run on your browser) https://chromewebstore.google.com/detail/s3-multi-file-downloader/phjpokijmhpanjgpcjocplpdhkmgnodi?authuser=0&hl=en
does also support folder download, recursive, and pagination
Relevant content
- asked a year ago
- asked 3 years ago
- AWS OFFICIALUpdated a year ago

Do you have any additional questions, happy to help.