我正在尝试重命名mac上的一批文件。
文件看起来像
122-测试-12.jpg
我需要输出文件为
测试-12.jpg
我一直在尝试使用自动机,但我不知道在做什么。
您可以使用 AppleScript:
set myFiles to (choose file with multiple selections allowed)
repeat with aFile in myFiles
set aFile to contents of aFile
tell application "Finder"
set fileName to aFile's name
set firstDash to offset of "-" in fileName
set aFile's name to text (firstDash + 1) through -1 of fileName
end tell
end repeat