os.path.exists用法
时间: 2023-03-23 11:02:32 浏览: 110
Python常用模块os.path之文件及路径操作方法
os.path.exists() 是 Python 的一个内置函数,用于检查给定路径是否存在。
使用方法如下:
```python
import os
if os.path.exists('/path/to/file'):
print('The file exists.')
else:
print('The file does not exist.')
```
其中,`/path/to/file` 是要检查的文件路径,可以是相对路径或绝对路径。如果该文件路径存在,则返回 True,否则返回 False。
注意,该函数只能用于检查文件或目录是否存在,不能用于检查文件内容是否符合要求等其他功能。
阅读全文