如何在网络驱动器上的共享文件夹中运行PyPdf2 fileMerger

时间:2018-07-30 14:20:04

标签: file-permissions pypdf2 file-moving

我正在尝试使用PyPDf2在办公室的共享驱动器的文件夹中合并多个文件。但是,我的程序从未完成运行,因为我认为它没有访问该文件夹的权限。有没有办法允许访问它?

from PyPDF2 import PdfFileMerger
import os

path = "H:\\Accounting\\ME\\Attachments\\Pdf"
pdf_files = ["\\file1.pdf", "\\file2.pdf"]
merger = PdfFileMerger()
    for files in pdf_files:
        merger.append(path + files)
    if not os.path.exists(path + "\\newMerged.pdf"):
        merger.write(path + "\\newMerged.pdf")
merger.close()
print("done")

0 个答案:

没有答案