データ取得
例1:現在のアプリケーションで選択されたファイルを取得する
let selected = await eagle.item.getSelected();
console.log(selected);例2:指定条件のファイルを取得する
let items = await eagle.item.get({
ids: [],
isSelected: true,
isUnfiled: true,
isUntagged: true,
keywords: [""],
ext: "",
tags: [],
folders: [],
shape: "square",
rating: 5,
annotation: "",
url: ""
});
例3:現在のアプリケーションで選択されたフォルダを取得する
最終更新