Answers:
我们是否必须关注名称是否相同?如果没有,这应该适合作为Hazel中的嵌入式AppleScript:
tell application "Finder"
set original_name to name of theFile
set short_name to characters 1 thru 10 of original_name as string
set name of theFile to (short_name & ".png" as string)
end tell
您将Hazel设置为在“任何文件”上运行此规则,然后运行“运行AppleScript”(嵌入式)。
您可以轻松更改字符数。我选了十个。做什么对你有用。另外,我猜你的图像是“.png”文件 - 你会把它改成“.jpg”或其他什么。
我希望这可以帮助你!