Получение "C: / fakepath" для выбранного каталога. Так может кто-нибудь, пожалуйста, помогите мне получить выбранный каталог.
var dialogElement = document.createElement('dialog');
dialogElement.style.width = '80vw';
dialogElement.style.height = '30vh';
dialogElement.setAttribute("id", "test");
document.getElementById('ExportIntermediateForm').appendChild(dialogElement);
$('dialog').html(
`<label>Select Directory</label>
<input type="file" id="directorySelector" onchange="FilePath()" webkitdirectory directory multiple />
<p id="path"></p>`
);
dialogElement.showModal();
function FilePath() {
console.log("Here I need selected directory");
}