Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
需要帮忙:
我们想在 DOS 中创建一个批处理文件(在命令提示符下运行),它将创建 50 个文件夹(例如,文件夹 1、文件夹 2、文件夹 3 等),并在每个文件夹中创建子文件夹(filesin、filesout)。
问候
for /L %%g in (1,1,50) do ( md folder%%g md folder%%g\filesin md folder%%g\filesout )