1

I'm trying to take this file input, which is a multi-file input.

<input name="userfile[]" type="file" multiple=""/>

And after my files are selected, i want to put them into separate individual file inputs via javascript. Is this possible?

Stone
  • 60
  • 1
  • 9
  • Didn't you just ask a similar question? http://stackoverflow.com/questions/6636064/javascript-file-upload-fields-manipulating-file-input – mrk Jul 09 '11 at 17:08
  • What is the business or programming problem you are trying to solve? Perhaps there is a different coding approach that we could help you with if you explain what you need to do. – Jordan Jul 09 '11 at 17:44
  • Did you find a way to do this? Some other workaround? I am faced with the same issue. – ic3b3rg Oct 14 '11 at 20:53

1 Answers1

1

In practice, no. Every modern browser will prevent you from programmatically populating a file input.

Anthony Grist
  • 38,173
  • 8
  • 62
  • 76