python查询文件是否存在
时间: 2023-10-08 08:13:18 浏览: 108
Python判断文件和文件夹是否存在的方法
可以使用Python的os模块中的path.exists()函数来判断文件是否存在。具体代码如下:
```
import os
file_path = 'path/to/file'
if os.path.exists(file_path):
print('文件', file_path, '存在')
else:
print('文件', file_path, '不存在')
```
需要将 `'path/to/file'` 替换为你想要查询的文件路径,可以是相对路径或绝对路径。
阅读全文