将文件批量添加到印象笔记

使用这个功能可以批量导入一些网页什么的!
每一个文件就是一条单独的笔记。
打开mac os的script edit复制粘贴运行就可以了!

set this_folder to (choose folder with prompt "Pick the folder containing the files to process:") as string
tell application "System Events"
    set these_files to every file of folder this_folder
end tell
repeat with i from 1 to the count of these_files
    set this_file to (item i of these_files as alias)
    tell application "Evernote"
        create note from file this_file
    end tell
    
end repeat
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容