码迷,mamicode.com
首页 > 其他好文 > 详细

创建文件夹

时间:2020-06-17 14:19:26      阅读:51      评论:0      收藏:0      [点我收藏+]

标签:函数   调用   存在   makedirs   make   class   exist   strip   dir   

创建文件夹

# 创建文件夹
def mkdir(path):
    # 引入模块
    import os
    # 去除首位空格
    path = path.strip()
    # 去除尾部 \ 符号
    path = path.rstrip("\\")
    # 判断路径是否存在
    isExists = os.path.exists(path)
    if not isExists:
        os.makedirs(path)
        print(path + ‘ 创建成功‘)
        return True
    else:
        print(path + ‘ 目录已存在‘)
        return False

# 定义要创建的目录
mkpath = "D:\\雅诗兰黛\\tmp\\%s" % (sheet_m)
# 调用函数
mkdir(mkpath)

创建文件夹

标签:函数   调用   存在   makedirs   make   class   exist   strip   dir   

原文地址:https://www.cnblogs.com/yanjiayi098-001/p/13152173.html

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