Board logo

标题: [文件操作] 批处理如何根据文件的时间来进行判断,把最后时间的文件改名?解决了 [打印本页]

作者: 我来了    时间: 2015-7-3 07:54     标题: 批处理如何根据文件的时间来进行判断,把最后时间的文件改名?解决了

譬如
好.PowerProClip 是最后的时间段生成的,改名成 hello.PowerProClip,移动到y:\来了 目录
作者: DAIC    时间: 2015-7-3 09:34

  1. @echo off
  2. for /f "delims=" %%i in ('dir /od *.PowerProClip') do (
  3.     set "file=%%i"
  4. )
  5. ren "%file%" "hello.PowerProClip"
  6. move /y "hello.PowerProClip" "y:\来了"
复制代码

作者: 我来了    时间: 2015-7-3 11:54

回复 2# DAIC

    测试发一下,不知为啥没有效果呢?

是不是 有中文名?
作者: DAIC    时间: 2015-7-3 12:34

回复 3# 我来了
  1. @echo off
  2. for /f "delims=" %%i in ('dir /b /od *.PowerProClip') do (
  3.     set "file=%%i"
  4. )
  5. ren "%file%" "hello.PowerProClip"
  6. move /y "hello.PowerProClip" "y:\来了"
复制代码





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