Applescript shell脚本无法写入文件?

时间:2014-04-07 15:20:14

标签: c macos shell applescript clang

我正在处理一个Applescript droplet,它会将我放在其上的任何源文件包起来。 我唯一真正的路线是

do shell script "clang " & (POSIX path of this_item as text)

但是我收到了错误

ld can't open output file for writing: a.out, errno=13 for architecture x86_64

当我直接使用终端时,这不会发生,因此它是一个Applescript问题。我如何通过这个?

2 个答案:

答案 0 :(得分:1)

你试过..

quoted form of (POSIX path of this_item as text)

答案 1 :(得分:0)

我明白了。我不得不cd到有问题的文件夹。