我正在尝试设置一个按钮,以便用户可以下载保存在服务器上的文件。
protected void btnDownloadHtmlFile_Click(object sender, EventArgs e)
{
string path = @"D:\web\mytestwebsite.com\www\temp\test.html";
if (!File.Exists(path))
{
File.Create(path);
}
TextWriter tw = new StreamWriter(path);
tw.WriteLine("<head></head><body>test</body>");
tw.Close();
WebClient webclient = new WebClient();
webclient.DownloadFile(@"D:\web\mytestwebsite.com\www\temp\test.html", @"C:\web\test.html");
}
Could not find a part of the path 'C:\web\test.html'.
中的结果
如果我换
webclient.DownloadFile(new Uri("http://mytestwebsite.com/temp/test.html"), @"C:\web\test.html");
如果我换
webclient.DownloadFile(@"D:\web\mytestwebsite.com\www\temp\test.html", "test.html");
或
webclient.DownloadFile(new Uri("http://mytestwebsite.com/temp/test.html"), "test.html");
我访问路径'C:\ Windows \ SysWOW64 \ inetsrv \ test.html'被拒绝。
最后,我转到文件夹C:\ Windows \ SysWOW64 \ inetsrv以授予NETWORK SERVICE权限,但它表示拒绝访问。我在服务器上以管理员身份登录。
我在这里读了几篇文章,但似乎没什么用,或者我错过了什么。
使用WebcClient.DownloadFile的正确方法是什么?
答案 0 :(得分:3)
让你的问题进入我的脑海。使用webclient.DownloadFile(new Uri("http://mytestwebsite.com/temp/test.html"), @"C:\web\test.html");
后,请确保web
中有目录C:\
。我的意思是确保您的文件系统中有C:\web
。否则会抛出错误。因为它需要存在目录,所以它只能创建新文件。
当您执行webclient.DownloadFile(@"D:\web\mytestwebsite.com\www\temp\test.html", "test.html");
时,它尝试在当前执行文件范围中创建文件,即C:\Windows\SysWOW64\inetsrv\
,并尝试创建文件,由于访问权限,它无法在那里创建文件。
解决方案,尝试使用以下代码,它应该在D:\web
中创建文件。
webclient.DownloadFile(new Uri("http://mytestwebsite.com/temp/test.html"), @"D:\web\test.html");
修改强>
免责声明您做错了(如果我不清楚要求),DownloadFile
是将网址下载到服务器位置,现在有点下载本地文件和将其保存到本地位置,就像save as
文件到任何其他位置一样。
修改强>
允许最终用户使用以下代码下载文件。
Response.Clear();
Response.ContentType = "text/html";
Response.AddHeader("Content-Disposition", "attachment;filename=a.html"); // replace a.html with your filename
Response.WriteFile(@"D:\webfile\a.html"); //use your file path here.
Response.Flush();
Response.End();