标题: [文件操作] 批处理怎样循环删除一个文件 循环100次 时间间隔2秒 [打印本页]
作者: along865 时间: 2019-12-14 19:14 标题: 批处理怎样循环删除一个文件 循环100次 时间间隔2秒
循环删除一个问件 循环100次 时间间隔2秒 求
作者: Gin_Q 时间: 2019-12-14 21:08
- @echo off
- set "f_p=D:\GIN\temp\test.txt"
- for /l %%a in (1,1,100) do (
- echo 第%%a次
- >nul timeout /t 2 /nobreak
- del /q %f_p% & call echo %%time%%
- )
-
- pause&&exit
复制代码
作者: Batcher 时间: 2019-12-14 21:36
回复 1# along865 - @echo off
- set "f_p=D:\GIN\temp\test.txt"
- for /l %%a in (1,1,100) do (
- del /f /q "%f_p%"
- >nul timeout /t 2 /nobreak
- )
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |