I need to put a input
where the user selects the folder that he wants that he wants to save the notes, but only select.
I tried to do it this way:
<input asp-for="Caminho" class="form-control" type="file" multiple webkitdirectory id="pasta">
But it appears to make upload
And when I do this:
<input asp-for="Caminho" class="form-control" type="file" id="pasta">
It appears to select a file, not a folder. Is there any way I can select the folder and get the path?
EDIT
I just need to select the folder, just to be easy for the user, so he does not have to type the path in hand. Any way to do this?