使用 AppleScript 的带有空格和连字符"-"路径



我正在尝试使用以下路径和名称保存文档:

set outpath to "Dropbox/PHY101 - Current/" & "E1S1.pdf"

但是,由于空格,这不起作用。 我尝试使用:

PHY101\ -\ Current and PHY101 - Current

他们都没有工作。

这是代码的其余部分:

tell application "Microsoft Word"
set activeDoc to active document
save as activeDoc file name outpath file format format PDF
end tell

我最终只是添加了更多的与号:

PHY101" & " - " & "Current

但我仍然不明白为什么另一种方法不起作用。

相关内容

  • 没有找到相关文章

最新更新