I have this input where users can choose a folder containing files to upload. Is there a way that I can allow users to select multiple folders at once?
<input
type="file"
name="upload_files[]"
directory=""
webkitdirectory=""
multiple=""
onChange={handleImageChange}
style={{
marginTop: '12px',
marginBottom: '12px',
}}
/>
As mentioned in another post, it is not possible to select multiple folders at once.