Reputation: 31
Please, what is the best strategy to download all objects stored on AWS S3?
I need to offer some feature to final users of our system that enable them to download in a single operation all stored objects - .rar or .zip would be great!
I'm using AWS SDK for Java.
Tks.
Upvotes: 0
Views: 1151
Reputation: 165
I found https://www.cloudzipinc.com/ allowed me to zip my bucket's files and also provided a csv table of contents for the zips. Then my users could download the zips that contained the files they needed.
Upvotes: 0
Reputation: 269312
There is no in-built capability in Amazon S3 to combine/zip files together.
Your application would need to create such a file, then upload it to S3 to make it available for download.
There are a number of utilities that can assist with this:
Upvotes: 2