python判断目录是否存在

使用OS模块

云海天教程网,大量的免费python教程,欢迎在线学习!

判断文件是是否存在

os.path.isfile(path)

判断目录是否存在

os.path.isdir(path)

判断文件是否存在

# 使用 path 模块
os.path.exists(path)
# 使用 access() 方法
os.access(path, os.F_OK)

使用 pathlib 模块

import pathlib
path = pathlib.Path('path/to/file')
# 判断路径是否存在
path.exists()
# 判断是否为文件
path.is_file()
# 判断是否为目录
path.is_dir()

来源:PY学习网:原文地址:https://www.py.cn/article.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python判断目录是否存在