I want to get the path of selected folder. Here is my code:
<input style="display:none;" id="fileDialog" type="file" webkitdirectory />
var chooser = document.querySelector('#fileDialog');
    chooser.addEventListener("change", function(evt) {
      console.log(this.value);
    }, false);
    chooser.click(); 
Using this code i'm getting a fakepath.
Is there anyway in node.js,so i can get the path of my selected folder. I'm using express framework in node.js.
 
     
    