1. import os
    2. os.path.exists('d:/assist')
    3. # True
    4. os.path.exists('d:/assist/getTeacherList.py')
    5. # True
    6. os.path.isfile('d:/assist')
    7. # False
    8. os.path.isfile('d:/assist/getTeacherList.py')
    9. # True
    10. os.makedirs('d:/assist/set') # 创建文件夹
    11. os.path.exists('d:/assist/set')
    12. # True