1
如何在AppleScript中沒有擴展名的情況下獲取文件名?例如:AppleScript中沒有擴展名的文件名
Penny.Dreadful.S03E01.720p.HDTV.x264-BATV.mp4
到
Penny.Dreadful.S03E01.720p.HDTV.x264-BATV
一個文件的工作對我來說足夠,但可能更多的文件是英寸 以下代碼採用文件名,但帶有擴展名。我不想延期。謝謝你的幫助。
try
set theNames to {}
tell application "Finder"
repeat with i in (get selection)
set end of theNames to name of i
end repeat
end tell
set {TID, text item delimiters} to {text item delimiters, return}
set the clipboard to theNames as text
set text item delimiters to TID
end try
謝謝。 Works是好的 –
我們可以得到輸出到Automator的文件名嗎? –
當然,將代碼放在AppleScript動作中並返回'theNames'。但是您可以使用Automator Finder選擇操作。 – vadian