import os
os.path.exists('d:/assist')
# True
os.path.exists('d:/assist/getTeacherList.py')
# True
os.path.isfile('d:/assist')
# False
os.path.isfile('d:/assist/getTeacherList.py')
# True
os.makedirs('d:/assist/set') # 创建文件夹
os.path.exists('d:/assist/set')
# True
Python:判断文件、文件夹是否存在
最新推荐文章于 2024-11-03 20:27:08 发布