Does Amazon S3 "download support include multiple options?

Does Amazon S3 Browser-Based Download Supports Multiple Input?

+3
source share
4 answers

Each form can only “send” one file to S3. To upload multiple files, you will need several forms.

From docs : Field Forms - File

You cannot upload more than one file at a time

+6
source

To download multiple files, use http://flajaxian.com/

+1
source

Jeffrey Way NetTuts , S3 Amazon Uploadify, Premium, .

S3 Uploader

0

You can upload multiple files by adding an attribute multipleto the file input tag as follows:

<input type="file" name="file" multiple />

Before submitting the form, you will need to set the “key” input field for each file. This works well with jQuery Upload Upload .

In the following examples, just add a multiplefile to the input field and it should work.

Rails example

PHP example

0
source

All Articles