1
我想將「Booklet xxx.pdf kopie.pdf」的醜陋文件名(作爲我的不良編程的副產品)更改爲「xxx.pdf」。的Automator它更改爲>「xxx.pdf」(在文件名前面的很煩人的空間...刪除部分文件名
這是我能想出...
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
非常感謝!
感謝您幫助這個菜鳥!它的工作原理:-)計算出9到11的意思,但現在我明白(字符)... – Mauritz