任何人都可以帮我批量循环 Windows 吗?我想要制作允许我执行以下操作的脚本:
1. copy all folders and files from Drive I: to X:\folder0001;
2. when done display: "Done"; (i ejected cd)
3. "enter" to next copy;
1. copy all folders and files from Drive I: to X:\folder0002;
2. when done display: "Done"; (i ejected cd)
3. "enter" to next copy;
...
1. copy all folders and files from Drive I: to X:\folder0010;
2. when done display: "Done"; (i ejected cd)
3. "enter" to next copy;
button q = exit
复制我用命令手动更改编号:
对于 (i:) 中的 %%f 执行 xcopy %%f X:\folder001\ /e,
我只想按 Enter 并更改 cd
但我不知道如何创建这个脚本:(