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.
我尝试编写一个 bat 脚本,它将所有文件从源目录复制到目标。每次迭代之间也必须有几秒钟的延迟。
for %%i in (%source%) do ( copy "%%i" "%destination%" ping 1.1.1.1 -n 3 -w 3000 > nul )
但我有一个问题。看起来这段代码只执行复制命令,但我需要for 循环的每次迭代Copy。Ping
Copy
Ping
首先,执行 ping,但只执行一次。
其次,在我的 for 循环中构造 %source%* 而不是 %source% 是正确的解决方案