是的,可以使用Python的os模块来检查文件是否存在于与.py文件相同的文件夹中,而不考虑文件路径。具体的方法是使用os模块中的os.path.exists()函数来检查文件是否存在。
下面是一个示例代码:
import os
# 获取当前.py文件的绝对路径
current_path = os.path.dirname(os.path.abspath(__file__))
# 拼接.docx文件的路径
docx_file_path = os.path.join(current_path, 'example.docx')
# 检查文件是否存在
if os.path.exists(docx_file_path):
print("文件存在")
else:
print("文件不存在")
在上面的代码中,首先使用os.path.abspath(file)获取当前.py文件的绝对路径,然后使用os.path.dirname()函数获取当前.py文件所在的文件夹路径。接下来,使用os.path.join()函数将文件夹路径和.docx文件名拼接起来,得到.docx文件的完整路径。最后,使用os.path.exists()函数检查文件是否存在,并根据结果输出相应的提示信息。
这种方法可以忽略文件路径,只需将.docx文件放在与.py文件相同的文件夹中,即可检查文件是否存在。
领取专属 10元无门槛券
手把手带您无忧上云