求编写.bat

查看 64|回复 3
作者:LRB666   
我的照片是编号+中文,这么这些照片批量移动到对应编号的文件里

编号, 照片

zhangrichens   

需求不明确,编号是怎么的?最好举例子,或提供样本,这样才好写。
jyjjf   

只要你会excel和复制命令和创建目录命令,这些都很简单。
楼下哪位python大神帮他弄个自动的吧
blfiag   

虽然python是万能的,但WIn本土脚本更方便,不用导入一大堆import库。
AutoIt 脚本,可自行编译或运行
#include
$sourcePath="你的原始目录"
$destPath="目标目录,其中有各个编号,或自行建立?"
$files=_FileListToArray($soucePath, "*.*", 1, 0)
For $i=1 to $files[0]
      $a=StringRegExp($files[$i], "\d+",3)
      $id=$a[0]
      If Not FileExists($destPath & "\" & $id) Then DirCreate($destPath & "\" & $id)
      FileMove($path & "\" & $files[$i], $destPath & "\" & $id)
Next
您需要登录后才可以回帖 登录 | 立即注册

返回顶部