选择文件提示,显示隐藏文件? Applescript objtc

时间:2014-07-21 12:29:02

标签: xcode macos operating-system applescript

我用它来获取一个我可以选择文件的提示

set thePath to quoted form of POSIX path of (choose folder with prompt "whatever)

如何在“选择带提示的文件夹”中查看隐藏文件? 允许在finder中查看隐藏文件并没有做任何不同的事情。

1 个答案:

答案 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