码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-08-22 19:04:56      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:pytho   nbsp   lse   创建   ssi   list   bsp   ssis   make   

 

>>> 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判断文件和文件夹是否存在、创建文件夹

标签:pytho   nbsp   lse   创建   ssi   list   bsp   ssis   make   

原文地址:https://www.cnblogs.com/sea-stream/p/11396072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!