「Booklet xxx.pdf kopie.pdf」のような醜いファイル名を (私の悪いプログラミングの副産物として) 「xxx.pdf」に変更したいと思います。Automator はそれを > "xxx.pdf" に変更します (ファイル名の前に非常に迷惑なスペースがあります...
これは私が思いつくことができるものです…</p>
tell application "Finder"
set allFiles to selection
search of (name of every item of allFiles) for "Booklet "
try
if file exists then delete "Booklet " of name
end try
search of (name of every item of allFiles) for ".pdf kopie"
try
if file exists then delete ".pdf kopie" of name
end try
end tell
どうもありがとう!