views:

76

answers:

3

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

  • Support image files
  • be user-friendly
  • be customizable

It may be written in:

  • RoR (Ruby On Rails)
  • Java
  • Flash

Thanks in advance.

+1  A: 

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.

John Topley
+1  A: 

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

Anand
A: 

Unfortunately, if you want to upload entire folder you are limited to Java and ActiveX only (ex. 3rd party folder upload applet).

sfedor