Html File
<button mat-button (click) = "FileDownload">Download</button>
Anugular 4 Component Method
FileDownload()
{
this.filePath = "D:\SamplePDF.pdf";
document.loation.href = this.filePath;
}
Here, I want to download the local file when button click happens. I am not able to download the file. Please help.
PS: I am not able to access window.open() also as I am using angular 4 application.