虽然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