I am trying to find out if browser has ability to select folders, not just multiple files. Current Chrome supports this (example: http://html5-demos.appspot.com/static/html5storage/demos/upload_directory/index.html).
Apparently, it works in Chrome when <input type="file" />
has webkitdirectory
attribute. But how can I test if browser is actually capable of selecting folders and iterating through files?
<input type="file" webkitdirectory />
allows only folders to be selected, not files or folders. – Serosa