什么是打开文件夹的applescript代码

时间:2017-05-15 15:40:44

标签: applescript

现在我正在使用此代码:

    open folder

似乎无法找到该文件夹​​。 我是否必须指定文件夹?

1 个答案:

答案 0 :(得分:1)

基本上open不会打开文件夹。

您必须通过Finder打开文件夹并指定HFS字符串路径alias或Finder文件夹说明符:

tell application "Finder" to open (path to desktop)

tell application "Finder" to open home

tell application "Finder" to open folder "Applications" of startup disk