在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("文件不存在")
這些方法都可以用來判斷文件是否存在,具體使用哪種方法取決于個人喜好和需求。