如何在applescript上搜索和打开内容文件?

时间:2014-09-21 11:57:07

标签: path applescript

我正在尝试使用applescript搜索应用程序中的文件,然后打开它。问题是我希望文件从mac中的任何地方打开,例如。桌面,图书馆,下载等无论身在何处。

此脚本有效,但该文件只能在桌面上,因为路径适用于桌面,所以无法在其他任何地方使用

将文件设置为({path to desktop}作为文本)& “MagroXELA.app:Contents:Troll.mp3”     告诉应用程序“Finder”打开文件theFile

亲切的问候,亚历克斯

1 个答案:

答案 0 :(得分:0)

有一个applescript行可以返回运行脚本的进程的路径,该进程可以处理脚本文件本身的物理位置。

set appLocation to path to me as string
set theFile to appLocation & "Contents:Troll.mp3"
tell application "Finder" to open file theFile