Python判断文件是否存在
时间: 2023-11-19 11:20:46 浏览: 69
在 Python 中,可以使用 `os` 模块中的 `path` 子模块来判断文件是否存在。具体方法是使用 `os.path.exists(file_path)` 函数,其中 `file_path` 是文件的路径,返回值为布尔值,如果文件存在则返回 True,反之则返回 False。
例如,下面的代码可以判断当前目录下是否存在名为 `test.txt` 的文件:
```python
import os
if os.path.exists("test.txt"):
print("文件存在")
else:
print("文件不存在")
```
如果文件存在,程序会输出 `文件存在`,否则输出 `文件不存在`。
相关问题
python判断文件是否存在
可以使用Python内置模块os中的path模块来判断文件是否存在,具体可以使用如下代码:
```python
import os
if os.path.isfile('/path/to/file'):
print('文件存在')
else:
print('文件不存在')
```
其中,`/path/to/file`需要替换为你要判断的文件路径。如果文件存在,则输出"文件存在",否则输出"文件不存在"。
Python 判断文件是否存在
在 Python 中,你可以使用 `os` 模块中的 `os.path.exists()` 函数来判断文件是否存在。这个函数接收一个文件路径作为参数,如果文件存在则返回 `True`,否则返回 `False`。以下是使用示例:
```python
import os
def check_file_exists(file_path):
if os.path.exists(file_path):
return True
else:
return False
# 使用方法
file_path = "example.txt" # 替换成你想要检查的文件路径
if check_file_exists(file_path):
print("文件存在")
else:
print("文件不存在")
```
阅读全文