I have an angular 2 project that allows me to download files through a service and I know the file has been successfully downloaded as I can see the following console message:
this.rest.getGeometry(this.stlLocation).subscribe(data => console.log('file downloaded successfully'));
A look at the Network tab in the "Developer tools" confirms that the download was successful.
is it possible to save the file to a local folder such as src/app/assets?
Thank you for your help,
Dino