在Windows批处理脚本中,如何延时?
::延时1,缺点:时间精度为1秒,不够精确 @rem ping 127.0.0.1 -n 30>nul ::延时2,时间精确,CPU占用低,是最佳选择 ::choice /t 3 /d y /n > nul ::延时3 timeout 3 /nobreak ::延时4,生成临时文件,时间精度为0.001秒,精度高 vbs start /wait @echo off echo wscript.sleep 5000 > sleep.vbs start /wait sleep.vbs start gdh.txt del /f /s /q sleep.vbs
以上