Jump to content

buckerine

Level 2
  • Posts

    18
  • Joined

  • Last visited

Posts posted by buckerine

  1. 10 hours ago, DTLow said:

    I'm using the Evernote Legacy product on a Mac    
    Note the search parameters for an incremental backup (updated:day-1 -updated:day)

    My automation tool is AppleScript and the built in OS scheduler

    The script code is simple

    tell application "Evernote"
        
    set fileBackuphtml to "/Users/DTLow/Desktop/@Evernote/Evernote_Backup/-Current"
        
    set fileBackuphtml to POSIX path of fileBackuphtml

         set theNotes to find notes                                                            -- Weekly Full
        set theNotes to find notes ("updated:day-1 -updated:day")    -- Daily Incremental

         with timeout of (90 * 60) seconds
           
    export theNotes to fileBackuphtml format HTML with tags
         end timeout
    end tell

    Outstanding. Thank you! 

×
×
  • Create New...