Using HTML5 upload multiple is it possible to have a wildcard upload. Means if user gave *.jpg in browse option is there any possibility to upload all the images that having the .jpg extension.
<input id="upload" type="file" multiple />
I have researched about it and couldn’t found any thing.
No, the
multipleattribute will let users select multiple files to upload to you, but they still need to select them themselves.