import os
import shutil
#删除目录
def rmdir(path):
try:
shutil.rmtree(path)
print(path+':删除成功')
except:
print(path+":尚未创建")
def mkdir(path):
# 去除首位空格
path = path.strip()
# 去除尾部 \ 符号
# path = path.rstrip("\\")
# 判断路径是否存在
# 存在 True
# 不存在 False
isExists = os.path.exists(path)
# 判断结果
if not isExists:
# 如果不存在则创建目录
# 创建目录操作函数
os.makedirs(path)
print(path + ':创建成功')
return True
else:
# 如果目录存在则不创建,并提示目录已存在
print(path + ':目录已存在')
return False
标签:存在,Python,创建,print,path,os,目录
来源: https://www.cnblogs.com/liutianrui1/p/10347750.html