How can i change the filename in the input file object? [duplicate]

I want to change the filename in the input file object with JS. Reading the filenaname works.

 var x = document.getElementById("myFile").files[0];

 alert( x.name);

We can change the filename and write back?
Many thanks for your help.