I have a link ,
http://localhost/pro开发者_开发问答ject/slide.pptx
How to download it into specific file location without using web browser. : C#
Use WebClient.DownloadFile(Uri,String)
method.
WebClient wc = new WebClient();
wc.DownloadFile("http://sth.com/sth.zip",
"sth.zip");
精彩评论