System.UnauthorizedAccessException拒绝访问路径

时间:2013-08-22 07:28:27

标签: c# exception .net pdf-writer

尝试使用以下代码编写PDF文档:

document = new Document();
PdfWriter writer = null; ;
try
{
    writer = PdfWriter.GetInstance(document, new FileStream(@"E:\mergFiles", FileMode.Create));
}
catch (Exception xc)
{ }

我得到一个例外:

{System.UnauthorizedAccessException: Access to the path 'E:\mergFiles' is denied.
   at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
   at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath)
   at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
   at System.IO.FileStream..ctor(String path, FileMode mode)
   at PDFLibrary.PDFManager.MergeDocs()}

我可以访问此文件夹。

goggled并发现这可以帮助File.SetAttributes(@"E:\mergFiles", FileAttributes.Normal);,但我仍然得到同样的例外。

1 个答案:

答案 0 :(得分:7)

好吧,您无法将文件夹的名称传递给FileStream。它必须是包含路径的文件名(编辑:当然,如果您使用相对文件名,它实际上 包含路径)。

如果要创建文件夹,请使用Directory.CreateDirectory。要在该文件夹中创建文件,请使用以下内容:

string fullName = Path.Combine(pathName, fileName);
writer = PdfWriter.GetInstance(document, new FileStream(fullName, FileMode.Create));