誰かが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
コマンドで手動で番号を変更してコピーします:
for %%f in (i:) do xcopy %%f X:\folder001\ /e,
Enterキーを押してCDを変更するだけです
しかし、このスクリプトの作成方法がわかりません:(