我正在尝试使用 AppleScript 将笔记从 Evernote v.3.3.0 以 HTML 格式导出到磁盘上的某个位置。手头的任务似乎并不特别复杂,但我对 Evernote 相对较新,对 AppleScript 完全陌生并没有多大帮助... ;)
这是我到目前为止的想法 - 非常感谢任何评论!
tell application "Evernote"
set allmynotes to find notes
set outputpath to "/Users/{myusername}/Desktop/Test"
export allmynotes to outputpath format HTML
end tell
据我了解,导出为 HTML 会为每个笔记创建一个文件,这就是为什么我认为我需要指定输出文件夹名称而不是输出文件名的原因。另一个假设是脚本在双击时将使用活动用户的凭据运行。在我的机器上,该用户有足够的权限写入指定的文件夹。
到目前为止的结果是Evernote got an error: Unable to remove existing output file." number 1
和Evernote got an error: Unable to create output directory.
。有任何想法吗?
提前谢谢了!:)