读取txt文件 按行输出文字转为文件

import os

# 读取 txt 文件
with open('D:\\test\\new11.txt', 'r', encoding='utf-8') as f:
    lines = f.readlines()

# 遍历每一行文字,生成对应的文件夹
for line in lines:
    folder_name = line.strip()  # 去掉每行文字末尾的换行符
    folder_path = os.path.join(r'D:\test\12', folder_name)  # 构建文件夹路径
    os.makedirs(folder_path, exist_ok=True)  # 创建文件夹,如果已存在则不报错

  

posted @ 2023-09-20 13:37  dafengchui  阅读(10)  评论(0编辑  收藏  举报