怎么用python创建文件夹

图片[1]-怎么用python创建文件夹-uusu优素-乐高,模型,3d打印,编程

Python中创建文件夹的方法:

importos

defmkdir(path):

folder=os.path.exists(path)

ifnotfolder:#判断是否存在文件夹如果不存在则创建为文件夹
os.makedirs(path)#makedirs创建文件时如果路径不存在会创建这个路径
print"---newfolder...---"
print"---OK---"

else:
print"---Thereisthisfolder!---"
file="G:\\xxoo\\test"
mkdir(file)#调用函数

os.getcwd()可以查看py文件所在路径;

在os.getcwd()后边 加上 [:-4] + 'xxoo\\' 就可以在py文件所在路径下创建 xxoo文件夹

importos

folder=os.getcwd()[:-4]+'new_folder\\test\\'
#获取此py文件路径,在此路径选创建在new_folder文件夹中的test文件夹

ifnotos.path.exists(folder):
os.makedirs(folder)

创建txt文件

在桌面创建一个名字为 new 的txt文件

importos
file=open('C:\\Users\Administrator\\Desktop\\'+'new'+'.txt','w')
file.close()
原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞13 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容