D. Francis
D. Francis

Reputation: 31

Download S3 objects in a single operation

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

Answers (2)

TJCloudmin
TJCloudmin

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

John Rotenstein
John Rotenstein

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

Related Questions