Currently, I can let users upload multiple files with HTML File Input.
<input type="file" id="files" name="files" multiple>
Instead of just files, how do I let users upload an entire directory and its subdirectories with HTML/JavaScript?
I can only allow users to drag and drop folders which works fine but the users also need to be able to select entire folders with a folder/file selection dialog.
Dropbox has an upload folder feature as shown in the screenshot below.
Note: This is not a question concerning server side file uploading ability but just being able to select directory in the web browser.