如何获取应用程序包中的 Scripts 文件夹?
我对 AppleScript 很陌生,所以这是一个真正的基本问题,但我在 AppleScript 参考文献中找不到答案或示例。指导。
我正在制作一个简单的脚本,将其捆绑为应用程序文件,在 AppleScript 编辑器中,我可以看到应用程序的 Bundle Contents
,其中有一个图标、一个描述文件和一个 脚本
文件夹。如何从脚本访问该内容以及如何访问 scripts 文件夹
内的脚本?
I'm really new to AppleScript so this is a real basic question but I couldn't find the answer or an example in the AppleScript ref. guide.
I'm making a simple script that I'll bundle as an application file, in the AppleScript Editor I can see the app's Bundle Contents
in which I have an icon, a description file and a Scripts
folder. How do I access that content from the script and how do I access the scripts inside the scripts folder
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将脚本保存为脚本包或应用程序包,则可以使用
资源路径
命令,例如:另请参阅命令参考。
If you save your script as a script bundle or as an application bundle you can use the
path to resource
command, e.g.:Also see Commands Reference.