I am wondering where the file path is stored in a File object in HTML javascript.
I used Webkit DevTools and got the following:
FileList 0: File fileName: "script.js" fileSize: 71268 name: "script.js" size: 71268 type: "application/x-javascript" __proto__: File length: 1 __proto__: FileList
The name of the file, its size and types (who knows why the name and size have 2 variables), but the path is not specified.
Is there a way to find the path to the file, and if not, how does the browser and javascript read the file (for example, POST methods and determine the type and size)?
javascript html file html5
tcooc
source share