From html page, I select a "file index" text file in a local folder (element input type="file").This file list several file names located in the same current folder. How, in javascript, can I get a File descriptor from these other files from their file names ? I try with following code, but I don't know what to do after:
function GetFileHandleFromUrl(localURL) {
var http = new XMLHttpRequest();
http.open('GET', localUrl, false);
http.send(null); // success, return file content
var myFile = ???;
return myFile;