Evernote Notebooks Backup


/ Published in: AppleScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. (*
  2. Script to backup your Evernote notes.
  3. Each notebook is backed up to a seperate file with the same name as the notebook
  4.  
  5. Change the contents of backupFolder to your chosen backup location
  6.  
  7. Please feel free to use or amend this script as you wish.
  8.  
  9. No warrenty or guarantee is given or implied, you use this script entirely at your own risk.
  10. *)
  11. with timeout of (30 * 60) seconds
  12. tell application "Evernote"
  13. activate
  14. set backupFolder to "/Users/UserName/Evernote/"
  15. set allNotebooks to every notebook
  16. repeat with currentNoteBook in allNotebooks
  17. set notebookName to (the name of currentNoteBook)
  18. set allNotes to every note in notebook notebookName
  19. set exportFilename to (backupFolder & notebookName & ".enex")
  20.  
  21. export allNotes to exportFilename
  22. end repeat
  23. end tell
  24. end timeout

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.