As we all know browsers do NOT support repopulating file path to <input/>
file across page reload, due to security reasons. But recently chrome 86 has released File System Access API, that simplifies and allows users to read context of the file. If we pair this to File System API (do not confuse them), with the aid of window.requestFileSystem we can persist files between loads, which partially solves this Remember and Repopulate File Input stackoverflow issue.
I wonder if we can repopulate file using FileSystemFileHandle across tab reload. Doing this via requestFileSystem limits us on file size, since we copying file over each select. To be specific, I want to be able to upload and read user selected file after page has been reloaded w/o saving it to localFileSystem.
I also posted this question to github issues.