windows bat批量创建文件夹与文件

一、新建bat文件 批量创建.bat

@echo off
for /f %%i in (
nameList.txt
) do mkdir %%i && copy muban.docx %%i\%%i.docx

::  do mkdir %%i && copy muban.docx %%i\%%i.docx && start %%i\%%i.docx


::pause

二、创建文件 nameList.txt

把文件夹名字粘贴到 nameList.txt

三、创建空文件 muban.docx

备注: 批量创建.bat  、  nameList.txt    、 muban.docx位于同一目录。

你可能感兴趣的:(windows,bat批量创建文件)