I am looking for file saving ( in my local file system) functionality in Angular. I already gone through following modules.
But it asked for confirmation before saving file.
I want my file to saved automatically in my local folder ( C:\MyApplication\contents)
FileSaver.saveAs(new Blob([data], { type: "video/mp4" }), 'C:\MyApplication\contents\myvideo.mp4');
Any pointers would be really helpful.