标签: windows batch-file command-line
需要帮助:
我们想在DOS中创建一个批处理文件(在命令提示符下运行),它将创建50个文件夹(例如folder1,folder2,folder3等...),并在每个文件夹中创建子文件夹(filesin,filesout)。
此致
答案 0 :(得分:4)
for /L %%g in (1,1,50) do ( md folder%%g md folder%%g\filesin md folder%%g\filesout )