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

指定内容批量新建目录

时间:2019-06-11 19:02:23      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:readline   this   main   方法   HERE   txt   mkdir   str   not   

 1 import os
 2 def mkdir(path):
 3   folder=os.path.exists(path)
 4   if not folder:
 5     os.makedirs(path)
 6     print(path+"---OK---")
 7   else:
 8     print(path+"---There is this folder!---")
 9 
10 if __name__==__main__:
11 
12   with open(D:\input.txt,r) as f:
13     lines=f.readlines()
14     for line in lines:
15       folder=line
16       #strip()方法移除字符串头尾指定的字符
17       folder=folder.strip()
18       #print (folder)
19       mkdir(folder)

在D盘根目录新建一个input.txt文件,里面分行输入目录名字就行

指定内容批量新建目录

标签:readline   this   main   方法   HERE   txt   mkdir   str   not   

原文地址:https://www.cnblogs.com/song-song-974509823/p/11005178.html

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