3

尝试使用以下代码编写 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()}

我拥有对该文件夹的所有访问权限。

目瞪口呆,发现这可能会有所帮助File.SetAttributes(@"E:\mergFiles", FileAttributes.Normal);,但我仍然遇到同样的异常。

4

1 回答 1

9

好吧,您不能将文件夹的名称传递给FileStream. 它需要是一个包含路径的文件名(编辑:当然,如果您使用相对文件名,它实际上不必包含路径)。

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

string fullName = Path.Combine(pathName, fileName);
writer = PdfWriter.GetInstance(document, new FileStream(fullName, FileMode.Create));
于 2013-08-22T07:40:43.880 回答