Board logo

标题: [其他] 请老师帮助写2个:按文件夹下日期来运行的批处理thanks [打印本页]

作者: 我来了    时间: 2013-5-24 08:06     标题: 请老师帮助写2个:按文件夹下日期来运行的批处理thanks

G:\PowerPro_4.9n7\clip
此目录下有若干个*.PowerProClip的剪贴板文件,
找到一个 
时间最老的,运行该.PowerProClip的剪贴板文件,延迟等待5秒,再第二个 时间二老的运行之。。。。。。最新的运行之

===============================================
完事
再编一个时间按反向顺序的,最新的。。。。。。。。。延迟。。。。。。。。最老的那个被运行  的第二个批处理。
===============================================


补充说明 *.PowerProClip的剪贴板文件已事先用注册表关联之法,关联了。
传送门:http://www.bathome.net/thread-23941-1-1.html
作者: Python    时间: 2013-5-24 09:05

  1. @echo off
  2. cd /d "G:\PowerPro_4.9n7\clip"
  3. for /f "delims=" %%i in ('dir /b /a-d /od *.PowerProClip') do (
  4.     start "" "%%i"
  5.     ping -n 6 127.1 >nul
  6. )
复制代码
  1. @echo off
  2. cd /d "G:\PowerPro_4.9n7\clip"
  3. for /f "delims=" %%i in ('dir /b /a-d /o-d *.PowerProClip') do (
  4.     start "" "%%i"
  5.     ping -n 6 127.1 >nul
  6. )
复制代码

作者: 我来了    时间: 2013-5-24 09:18

哪位老师 能给分行翻译一下?谢谢。
作者: Python    时间: 2013-5-24 11:00

回复 3# 我来了


    第几行看不懂?
作者: 我来了    时间: 2013-5-24 11:47

for /f "delims=" %%i in ('dir /b /a-d /o-d *.PowerProClip') do (
    start "" "%%i"
    ping -n 6 127.1 >nul

这三行 就不清不楚的
作者: Python    时间: 2013-5-24 13:30

回复 5# 我来了


    按时间顺序逐个获取.PowerProClip文件
作者: 我来了    时间: 2013-5-25 08:44

按时间顺序逐个获取.PowerProClip文件

亲,您这样解释 还是不能让我尽懂啊。


for /f "delims=" %%i in ('dir /b /a-d /o-d *.PowerProClip') do (
前面的这句不明白,  后边dir列目录 a-d o-d不明白


     start "" "%%i" 启动的应该是得到的时间排序后的文件名
     ping -n 6 127.1 >nul 实际单句测试了下没有反应不太明白。
作者: BAT-VBS    时间: 2013-5-25 12:19

前面的这句不明白

http://www.bathome.net/thread-2189-1-1.html
http://www.bathome.net/thread-2336-1-1.html
后边dir列目录 a-d o-d不明白

dir /?
ping -n 6 127.1 >nul 实际单句测试了下没有反应不太明白。

http://www.bathome.net/viewthread.php?tid=3693#pid23312
http://www.bathome.net/thread-233-1-1.html




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2