I have the following html
<input name="xyz_media[files]" type="file" multiple="multiple">
and when I try to upload multiple files...
I only get these params (in a Rails controller):
"xyz_media"=>{"files"=>#<File:/var/folders/vr/3r47h7sj5tz9g85984yg8wvc0000gn/T/RackMultipart20130131-4448-vvim3u>}
Which is the tempfile of the last selected file.
Question: Is there a way to get all the tempfiles?