誕生日
これは最速の方法ではないかもしれませんが、まだ回答を待っているようです。ここから始めましょう。ファインダーですべての MOV ファイルを選択し、スクリプト エディターでこれを実行します。
set theTemplate to "Macintosh HD:Users:[user name]:[folder:location]:TEMPLATE.THM"
tell application "Finder"
set theFiles to selection
repeat with thisFile in theFiles
set thisName to name of thisFile
set theFolder to container of thisFile
set newFile to duplicate theTemplate to theFolder
set text item delimiters of AppleScript to "."
set thisName to text item 1 of thisName
set text item delimiters of AppleScript to ""
set newName to (thisName & ".THM")
set name of newFile to newName
end repeat
end tell
テンプレートへのパスを取得する最も簡単な方法は、ファインダーで選択してこれを実行することです。
tell application "Finder"
set theFile to selection as string
end tell
これにより、結果ウィンドウにパスが表示されます — 上記のスクリプトの最初の行にコピーするだけです。
それが役立つことを願っています
メートル。