Is there a method in Angular 2 to access files from an absolute path?
I have utilized the 'filesaver' library for file saving, storing the files
locally in txt/json formats.
For instance:
let blob = new Blob([document.getElementById('exportFile').innerHTML],{
type: "text/plain;charset=utf-8"
});
saveAs(blob, "export.json");
Now I am interested in reading and editing the export.json file. How can I reference it for future use?
Are there alternative methods or reputable libraries available for these
tasks?