我写的这个方法一周前运行良好,但现在它下载了一个不完整的文件。原始文件将近 10mb,但正在下载的文件是 2k。我的代码基本上是这样的
Dim URL as string = "http://www.cqc.org.uk/sites/default/files/cqc_locations_export.csv"
Dim path as string = "C:\temp"
Dim webClient As New WebClient
webClient.Headers.Add("user-agent", "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12 (.NET CLR 3.5.30729)")
webClient.DownloadFile(URL, path)
知道这里出了什么问题吗?
干杯