I don't know if I could upload both file and folder in the same <input>
tag. I've made it by drag-drop. But I want to do it by selecting files
In chrome, this allows me to select one folder.
<input class="input-button" type="file" multiple="multiple" webkitdirectory="" directory=""></input>
This allows me to select mutiples file but not folder
<input class="input-button" type="file" multiple="multiple" ></input>
How could I select both folder and files? Thank you very much