Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

how to download file from url using c#

using (var client = new WebClient())
{
    client.DownloadFile("http://example.com/file/song/a.mpeg", "a.mpeg");
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #download #file #url
ADD COMMENT
Topic
Name
3+5 =