Bulk file upload in rails through paperclip

Hi all,
I have a rails application running and in my application am
uploading some very large file (SAY 2GB) ,as of now am doing one file at
time ,but i would like to do bulk file upload in my appliaction ,I came
to know about Paperclip as one of plug-in for bulk file upload…

                      But is it possible to have bulk upload of very

large file (SAY 2GB) through papeclip???

My environment:

ruby 1.8.6
rails 2.2.2
mongrel 1.2.3

On Mar 8, 2011, at 12:38 AM, Amit T. wrote:

large file (SAY 2GB) through papeclip???

My environment:

ruby 1.8.6
rails 2.2.2
mongrel 1.2.3

Could you clarify what you mean by bulk upload? Are you talking about
individual file size? (2GB is enormous, and hard to push up an
asymmetrical connection unless you have fiber to the curb.) Or are you
referring to multiple files in a single upload? (Which you’d have to
send using a Flash or Java uploader, or nightly versions of Webkit and
the “multiple” attribute on your file input.) If the latter, are you
possibly talking about multiple 2GB files, or a bunch of files which
add up to 2GB?

Walter