阅读量:0
在Python中,可以使用以下几种方法来判断文件是否存在:
- 使用
os.path
模块的exists()
函数:
import os if os.path.exists("文件路径"): print("文件存在") else: print("文件不存在")
- 使用
os.path
模块的isfile()
函数,判断是否是一个文件:
import os if os.path.isfile("文件路径"): print("文件存在") else: print("文件不存在")
- 使用
Path
对象的exists()
方法:
from pathlib import Path file = Path("文件路径") if file.exists(): print("文件存在") else: print("文件不存在")
这些方法都可以用来判断文件是否存在,具体使用哪种方法取决于个人喜好和需求。