Python中如何判断文本文件是否存在
时间: 2024-02-16 14:32:44 浏览: 122
Python判断文件和文件夹是否存在的方法
可以使用Python中的`os.path`模块来判断文本文件是否存在,具体方法如下:
```python
import os
file_path = "path/to/your/file.txt" # 文件路径
if os.path.isfile(file_path):
print("文件存在!")
else:
print("文件不存在!")
```
在上面的代码中,`os.path.isfile(file_path)`函数用于判断`file_path`所指代的文件是否存在。如果存在,返回`True`,否则返回`False`。
阅读全文