Downloading multiple files from aws s3

As this time, the option to download multiple files from aws s3 console is not available.

The way to do is to to run a recursive copy from aws CLI (command line interface).

aws s3 cp –recursive s3://<bucket>/<folder> <local_folder>

See:

https://stackoverflow.com/questions/38021661/copy-multiple-files-from-s3-bucket

https://stackoverflow.com/questions/41764836/amazon-s3-console-download-multiple-files-at-once/52952658#52952658

Leave a comment