blog:2023-07-07_c_download_a_file_from_a_url
2023-07-07 C#: Download a File from a URL
Downloading a file from an
URL path
using (var client = new WebClient())
{
client.DownloadFile("http://target.com/file/test/test1.jpg", "test1.jpg");
}
Permalink blog/2023-07-07_c_download_a_file_from_a_url.txt · Last modified: 2023/07/07 13:42 by
jethro