python如何判断某文件是否存在
时间: 2023-02-11 13:14:07 浏览: 219
python189某医院体检挂号系统.zip
在 Python 中,可以使用 `os.path` 模块中的 `os.path.exists(path)` 函数来判断某文件是否存在。示例代码如下:
```python
import os
if os.path.exists('path/to/file'):
print('The file exists.')
else:
print('The file does not exist.')
```
如果文件存在,该函数会返回 `True` ,否则会返回 `False`。
也可以使用 `os.path.isfile(path)` 来判断是不是文件
阅读全文