shaoheshaohe 发表于 2019-4-29 15:40:14

python判断文件和文件夹是否存在、创建文件夹

>>> 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
页: [1]
查看完整版本: python判断文件和文件夹是否存在、创建文件夹