JournlerからEvernoteへのデータ移行方法
JournlerからEvernoteへのデータ移行しました。
以下、手順です。
Journlerからデータのエクスポート
「File -> Export Journal」で以下の画面が表示される。
.png)
私はオプションを上記画面のように設定しました。
『DataFormat』はWebアーカイブとかXHTMLとかもあったんですが、Evernoteにインポートした時
件名に〜.htmlとかがくっついてきたので、Rich Textでエクスポートしました。
『Include header』は余計だったので外しています。
Evernoteでの設定
Evernoteを起動して、Preferencesを表示する。
「Clipping」タブをクリックして、「After a clip」のチェックボックスを全て外す。
(インポートするときに毎回通知のアクションが走るので。)
Apple Scriptの作成
以下のApple Scriptを作成します。
set listOfNames to {}
set theFolder to choose folder "Select the source folder"
tell application "Finder"
set filelist to every file of the folder theFolder
repeat with currentFile in filelist
set currentFileName to (the name of currentFile)
set nom to currentFileName
if text -4 of nom is "." then
set currentFileName to (text 1 thru -5 of nom)
end if
set currentFileDate to (the creation date of currentFile)
set currentFileLocation to currentFile as alias
set currentFileFolder to (the name of theFolder)
tell application "Evernote"
create note title currentFileName created currentFileDate notebook currentFileFolder from file currentFileLocation
end tell
end repeat
end tell
そして、実行。
ファイル選択のダイアログが出てくるので、Journlerでエクスポートしたデータが
入っているフォルダを選択すると、一気にEvernoteへインポートされます。
以下、参考にしたサイトです。
Permanent Link to Migrating from Journler to Evernote