NicoJuicy
NicoJuicy

Reputation: 3528

Multiple file upload (even folder)

I'm looking for an easy to use (free) "module" that can upload multiple files / folders. It must:

It may be written in:

Thanks in advance.

Upvotes: 0

Views: 496

Answers (2)

Anand Shah
Anand Shah

Reputation: 14913

Have a look here http://jimneath.org/2008/04/17/paperclip-attaching-files-in-rails the article explains how to use Paperclip

Or you could try SWFUpload , a Javascript & Flash solution for file uploads

Upvotes: 1

John Topley
John Topley

Reputation: 115412

Uploading multiple files and folders in one go is not supported by HTML, which means that your options are Flash or a Java applet. Ruby on Rails isn't going to help you because it's a server-side framework that generates HTML.

Upvotes: 1

Related Questions