python中os.path.exists()的用法
时间: 2024-05-09 07:16:18 浏览: 136
Python中os.path用法分析
5星 · 资源好评率100%
`os.path.exists(path)` 方法用于判断指定路径(path)是否存在。如果指定的路径存在,返回 True;否则返回 False。
示例代码:
```python
import os
# 判断文件是否存在
if os.path.exists('test.txt'):
print('文件存在')
else:
print('文件不存在')
# 判断目录是否存在
if os.path.exists('test_dir'):
print('目录存在')
else:
print('目录不存在')
```
如果当前目录下存在 `test.txt` 文件和 `test_dir` 目录,运行上述代码会输出:
```
文件存在
目录存在
```
阅读全文