I have a file object like so in the browser memory:

The file is only added to the attribute on button click however I would like to hardcode the addition of that file object on the initialization of the view, so something like this:
initialize(options){
this.model.add({
"file": {},
"name": "Saved file",
})
}
However im not quite sure how to hardcode a File object for a specific file if that makes sense. How could I go about doing this? I realize I would probably need to make use of the javascript File object, but not quite sure how to hardcode for a specific file from my computer. Sorry if the question is weirdly worded kinda new to js.