Enable file and folder selection in HTML form with webkitdirectory

266 Views Asked by At

Is there any way to enable BOTH - file selection and also folder selection with HTML forms? Currently one or the other does work, I can't seem to be able to use both in single input statement.

If it's not possible to combine both types in single input, what would be most standard way to allow user upload both types with single action?

<p>Selecting ONLY directories
    <input name="directory" type="file" webkitdirectory multiple>
</p>
<p>Selecting ONLY files
    <input name="files" type="file" multiple>
</p>

0

There are 0 best solutions below