I'm trying to download a file located on internet site and I know how to do with WebClient
class.
But at this case which the site is re-directed to some web address and therefore, I'm considering to use Process.Start("URL address before re-directed")
to avoid bit complexity to download through re-directed web address. I even succeeded to download the file through re-directed web address.
However, I'm curious and want to speed up my application by removing some intermediate steps if possible.
If I approach through Process.Start("URL address before re-directed")
, the Download Prompt
is shown to ask users like 'Do you want to Open? Save? Save_as?'.
And I don't want this Download Prompt is shown and want to save automatically to utilize the file in my application.(If possible, I want to indicate the location(path) to be saved.)
Thank you so much !