我正在寻找一个批处理脚本或vbscript(最好是一个vbscript)来帮助我重命名大约5,000个左右文件的整个文件夹。
要重命名的文件具有以下格式的名称:nnnnnnnnnnnnnnnn.ddddddd.pdf其中n为no。 0-9和d是该示例格式01232009(2009年1月23日)中的日期。
我需要能够获取文件名的最后4个s并将它们移到文件名的前四个前面。所有文件名都是一致的,并使用相同的格式。这是我想要完成的一个例子:
nnnnnnnnnnnnnnnn.01232009.pdf ==> nnnnnnnnnnnnnnn.20090123.pdf
这样,当我对文件进行排序时,可以按日期按升序或降序对它们进行排序。知道如何使这项工作?
答案 0 :(得分:1)
这与前一个问题的回答基本相同。
它只是做了与日期不同的事情
此外,它回显文件名,以便您可以看到它正在做什么。
如果目标文件已存在,则会失败。
Const IN_PATH = "path_to\directory"
Const OUT_PATH = "path_to\directory"
dim fso: set fso = CreateObject("Scripting.FileSystemObject")
if not fso.FolderExists(IN_PATH) then
err.raise 1,, "Path '" & IN_PATH & "' not found"
end if
if not fso.FolderExists(OUT_PATH) then
err.raise 1,, "Path '" & OUT_PATH & "' not found"
end if
dim infolder: set infolder = fso.GetFolder(IN_PATH)
dim file
for each file in infolder.files
dim name: name = file.Name
dim parts: parts = split(Name, ".")
' Look for a file format of nnnnnnnnnnnnnnnn.dddddddd.pdf
' where the first segment is (I don't care) and dddddddd is
' a date, encoded. for example 01232009 implies (January
' 23, 2009).
If UBound(parts) = 2 And parts(2) = "pdf" And Len(parts(1)) = 8 Then
' build a new name, re-arranging the date
dim newname: newname = parts(0) & "." & _
Mid(parts(1), 5, 4) & Mid(parts(1), 1, 4) & "." & parts(2)
' use the move() method to effect the rename
WScript.Echo Name & " ==> " & newname
file.move fso.buildpath(OUT_PATH, newname)
Else
WScript.Echo "Not renaming file: '" & name & "'"
End If
Next 'file
答案 1 :(得分:1)
对于纯粹的.BAT解决方案,请尝试此
@echo off
SETLOCAL enabledelayedexpansion
FOR %%a IN (*.*) DO (
CALL :cn %%a
echo REN %%a !a!
)
GOTO :eof
:cn
SET a=%1
SET a=%a:~0,-13%.%a:~-8,4%%a:~-12,4%.pdf
GOTO :eof
仔细测试后,删除echo
命令