【python】pdfplumber模块打开文件提示文件不存在:FileNotFoundError: [Errno 2] No such file or directory: ‘*.pdf‘

项目场景:

学习python使用pdfplumber模块操作pdf文件。

使用的开发工具:VSCode。


问题描述

导入pdfplumber模块后,打开文件,提示文件不存在,具体错误信息如下,1.pdf文件是要读取的文件。

FileNotFoundError: [Errno 2] No such file or directory: '1.pdf'

代码如下:

import pdfplumber

with pdfplumber.open("1.pdf") as pdf:
    print(pdf)
    print(pdf.metadata)  # 读取文档信息
    print(len(pdf.pages))  # 输出总页数

原因分析:

1. 首先检查【1.pdf】文件是存在的;

2. 文件使用绝对路径测试没有问题;

3. 发现在【终端】中,当前目录不是1.pdf所在目录;


解决方案:

进入1.pdf所在目录,然后再运行,没有问题。

你可能感兴趣的:(python)