Applescript选择文件,文件名

时间:2015-07-27 08:14:41

标签: macos applescript filenames osx-yosemite

我想要做的是这样的事情:

(1, 2.5, hello)
(hello, 2.5, 1)

但是当我使用该脚本时,它将返回一个文件路径,如... / ... / ... / ... / nameoffile.jar。但我想要的是它将返回文件名而不是路径(所以只返回nameoffile.jar)。有没有办法做到这一点?

感谢您的阅读,请尽快给出答案;),

Jort

1 个答案:

答案 0 :(得分:0)

使用Finder Suite:

set chosenfile to (choose file)

tell application "Finder"
    display dialog "The name of the chosen file is: " & (name of chosenfile)
end tell