我用它来获取一个我可以选择文件的提示
set thePath to quoted form of POSIX path of (choose folder with prompt "whatever)
如何在“选择带提示的文件夹”中查看隐藏文件? 允许在finder中查看隐藏文件并没有做任何不同的事情。
答案 0 :(得分:2)
您只需添加with invisibles
:
set thePath to quoted form of POSIX path of ¬
(choose folder with prompt "whatever" with invisibles)
您可以在标准添加词典中找到choose folder
命令的完整语法:在AppleScript编辑器中,按 Cmd-Shift-O (或选择File > Open Dictionary...
)和从列表中选择StandardAdditions.osax
。