Applescript 选择文件,文件名

Applescript Choose file, filename

我想做的是这样的:

set filename to (choose file)
display dialog "The name of the chosen file is: " & filename

但是当我使用该脚本时,它将 return 文件的路径类似于 .../.../.../.../nameoffile.jar。但我想要的是它将 return 文件名而不是路径(所以只有 nameoffile.jar)。有办法吗?

感谢阅读,请尽快给予答复;),

乔特

使用 Finder 套件:

set chosenfile to (choose file)

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