JavaScript not able to rename file before upload JavaScript not able to rename file before upload reactjs reactjs

JavaScript not able to rename file before upload


Yep that sounds like a weird rule to set it as Read-only, but it's what it is...So the workaround, not so hard, is to create a new File object from your previous one...

var previous_file = new File(['foo'], 'file.txt', {type: 'text/plain'});try{  previous_file.name = 'hello.txt';}catch(e){}console.log(previous_file.name); // didn't work// so we just create a new File from it...var new_file = new File([previous_file], 'hello.txt');console.log(new_file);