[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[日期时间] 请教:批处理for中每个循环的起始时间%time%都一样没有变化

  1. @echo off
  2. echo starttime,%time%
  3. echo starttime,%time%>timeresult.txt
  4. for /r %%i in (*.txt) do (
  5. echo %%~nxi
  6. call set t1=%%time%%
  7. echo waiting 3 second ...
  8. ping -n 3 127.1>nul
  9. call set t2=%%time%%
  10. call echo %%t1%%,%%t2%%
  11. call echo %%~nxi,%%t1%%,%%t2%%>>timeresult.txt
  12. )
  13. echo endtime,%time%>>timeresult.txt
  14. echo endtime,%time%
  15. echo complete
复制代码
set t1, set t2 前不加call也试过了。
谢谢指点!

回复 1# yyii
  1. @echo off
  2. setlocal enabledelayedexpansion
  3. echo starttime,!time!
  4. echo starttime,!time!>timeresult.txt
  5. for /r %%i in (*.txt) do (
  6.     echo %%~nxi
  7.     set t1=!time!
  8.     echo waiting 3 second ...
  9.     ping -n 3 127.1 >nul
  10.     set t2=!time!
  11.     echo !t1!,!t2!
  12.     echo %%~nxi,!t1!,!t2!>>timeresult.txt
  13. )
  14. echo endtime,!time!>>timeresult.txt
  15. echo endtime,!time!
  16. echo complete
复制代码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

返回列表