I want to download a file directly from internet without exposing the url to the user from blazor. The user could be able to select the download location but never see the download link. I have a razor page for this.
I used WebRequest for this. It downloads the file but I am not able to select the location to save file Please help?
@using (var client = new WebClient())
{
client.DownloadFile("https://s3.amazonaws.com/media.eremedia.com/uploads/2012/08/24111405/stackoverflow-logo-700x467.png", "File.png");
}