Multiple output files from one input file
I'm trying to take this file input, which is a multi-开发者_JS百科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?
In practice, no. Every modern browser will prevent you from programmatically populating a file input.
精彩评论