1 使用os.path模块
import osfile_path = 'hello.txt'if os.path.exists(file_path):print(f"文件 {file_path} 存在。")
else:print(f"文件 {file_path} 不存在。")
2 使用pathlib模块
from pathlib import Pathfile_path = Path('word.txt')if file_path.exists():print(f"文件 {file_path} 存在。")
else:print(f"文件 {file_path} 不存在。")
'''
参考:
如何用Python判断文件是否存在
https://mp.weixin.qq.com/s?__biz=Mzg4NTE5MDAzOA==&mid=2247494620&idx=1&sn=262a5d71412a8a29f90e5cca7f1caab1&chksm=cfae1725f8d99e338bf396a489e2f1964de5b285bfcb64732743ae0b75fe9540c17e743f8442&cur_album_id=3283798859109875720&scene=189#wechat_redirect
'''