Is there any way for the browser to "lock" the file after being selected by the <input type="file" />
? Right now I can select a file, start some operations on it with JavaScript and in the meantime I can delete it from my disk, which results in errors in JavaScript code.
EDIT The goal is to make sure the file cannot be deleted while I am working on it with JavaScript.
No there is no way. Simply because JS is a client side language, even with server side this wouldn't be possible because you can't interact with users computer. For this to happened you would need your desktop app that would take the file for example copy it and lock it.
If this was to be implemented, this would have to be implemented in the browser.
Edit addition:
If you think about it why this isn't implemented in browsers already, maybe because what if you go offline while uploading what will happen to the file? Stay locked?