1

这个automator脚本就是一个例子。当我显示路径时,它看起来是正确的,但是如果我尝试将文件复制到该路径,则会出现错误。

示例自动机脚本

4

1 回答 1

1

这是修复 - 需要的 posix 路径。

on run {input, parameters}

    set theFilePath to POSIX path of (input as string) & "/Samples" as string
    display dialog theFilePath

    return theFilePath
end run
于 2013-07-17T03:29:42.857 回答