0

Macでファイルのバッチの名前を変更しようとしています。

ファイルは次のようになります

122-テスト-12.jpg

出力ファイルが必要です

テスト-12.jpg

私はautomatorを使用しようとしていますが、何をしているのかわかりません。

4

1 に答える 1

1

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
于 2013-05-22T02:25:57.343 に答える