AppleScript网络驱动器或安装的当前路径


0

我正在尝试创建一个AppleScript服务,允许我在Finder的文件夹中创建一个新的文本文件。所以我可以右键单击某个位置并创建一个新的文本文件。到目前为止,这是我的流程:

Apple script service flow

它目前适用于大多数文件夹。但是,当我尝试在已安装的网络文件夹上执行此操作时,我收到此错误:

“运行AppleScript”操作遇到错误:“无法将”类cdis“”应用程序“Finder”的“X文件夹”转换为类型文本。“


看看我的答案 答:右键单击创建新文档 - 如何? 。该 其中可以单独在Automator Service工作流程中使用,无需其他操作,可以在已安装的网络卷上运行。
user3439894

Answers:


1

基于以下内容 回答 ,我在第一步编辑了AppleScript:

on run {input, parameters}
    tell application "Finder"
        set the currentFolder to (folder of the front window as alias)
    end tell
    return currentFolder
end run

现在可以在网络驱动器上正常工作。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.