无法将PDF写入磁盘。 Windows错误5.访问被拒绝

时间:2014-11-28 15:46:07

标签: c# asp.net pdf

我使用AbcPdf,..在生成pdf后,我想将其保存到某个文件夹中,例如" generatedPdf"

string path  = "C:\\project-name\\wwwroot\\generatedPdf\\";
try{
   theDoc.Save(path);
   theDoc.Clear();
}
catch (Exception ex)
{
   throw new Exception(ex.ToString());
}

错误信息是:

  

无法将PDF写入磁盘。 Windows错误5.访问被拒绝。

对于此文件夹,我为IISUser和SystemUser设置了权限=>完全控制

我做错了什么?

1 个答案:

答案 0 :(得分:2)

您必须提供文件名:

string path  = "C:\\project-name\\wwwroot\\generatedPdf\\somefile.pdf";
                                                         ^^^^^^^^^^^^