python判断文件和文件夹是否存在、是否为空,创建文件夹
时间:2020-06-12 21:41:56
收藏:0
阅读:480
>>> 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
if not os.listdir(f): #判断文件夹是否为空 f是一个文件夹的绝对路径
https://www.cnblogs.com/sea-stream/p/11396072.html
原文:https://www.cnblogs.com/yibeimingyue/p/13110400.html
评论(0)