I want to use a file explorer in order to get the path of the element I'll select in this explorer.
Could I use something like this :
<input type="file" webkitdirectory />
The problematic is :
I would ideally like to limit the selection to folders only, not files.
I want to retrieve the path of the selected folder in order to store it. (I'm using angularjs, so I was thinking of binding it through a model)
Is this possible or is there an alternative suiting my needs ?