我正在尝试使用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")