>>> 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