BoostNoteフォルダに画像を送ってクリップボードにパスを入れる
# -*- coding: utf-8 -*-
import shutil
import os.path
import clipboard
import sys
to_path = "<boostnoteの画像置き場>"
argvs = sys.argv
argvs.pop(0)
if len(argvs) == 0:
exit
from_file = argvs[0]
shutil.copy(from_file, to_path + os.path.basename(from_file))
clipboard.copy("![](/:storage/{0})".format(os.path.basename(from_file)))