我是使用 c# 下载文件和目录的初学者Web.Net.WebClient
。我试过这个片段来下载一个文件:
Upload.Models.FichierModels fichier = new FichierModels();
WebClient client = new WebClient();
try
{
client.DownloadFile(new Uri(fichier.GetFichierUrlById(_id)), "fichier");
}
catch { }
但我得到了这个例外:
拒绝访问路径“C:\\Program Files (x86)\\IIS Express\\file”
这个异常的原因是什么?如何修复我的代码?