I'd like to deploy on a system that I'm making an option to download the files over the web, for pre-defined cloud links that I have.
But I'm not able to do this implementation. Can you help me?
I'd like to deploy on a system that I'm making an option to download the files over the web, for pre-defined cloud links that I have.
But I'm not able to do this implementation. Can you help me?
Using the WebClient method, you can do this simply. Here is an example:
using (var client = new WebClient())
{
client.DownloadFile("http://exemplo.com/arquivo/foto/foto1.jpg", "foto1.jpg");
}