指定内容批量新建目录

Posted song-song-974509823

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了指定内容批量新建目录相关的知识,希望对你有一定的参考价值。

 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文件,里面分行输入目录名字就行

以上是关于指定内容批量新建目录的主要内容,如果未能解决你的问题,请参考以下文章

批量复制文件

原创《从0开始学Elasticsearch》—document的单/批量crud

linux批量替换指定文件夹中所有文件的指定内容

[VBA]批量新建指定名称的工作表

如何用bat批量移动文件夹内与文件夹同名的文件到指定文件夹?

shell选取部分内容