文件夹创建 def mkdir ( path ): # 引入模块 import os # 去除首位空格 path = path . strip () # 去除尾部 \ 符号 path = path . rstrip ( "\\" ) # 判断路径是否存在 # 存在 True # 不存在 False isExists = os . 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:/myPy"
mkdir(mkpath)