WebClient fileReader = new WebClient();
fileAddress = listItem;
//error here uri formats are not supported
fileReader.DownloadFile(fileAddress, saveTo);
这里的文件地址地址来了
http://pcdev04.pcsolution.net:83\Update32\rts\RTSUpdate.dll
您需要在 URI 字符串中替换\
为/
以获得有效地址:
fileReader.DownloadFile(fileAddress.Replace("\\", "/"), saveTo);
您可以尝试使用WebClient
Class 在 Internet 上打开文件 看看这个 -示例
打开并下载图像文件。
希望能帮助到你