文件选择器
window.showOpenFilePicker
const handle = await window.showOpenFilePicker({
multiple: false
});window.showSaveFilePicker
const handle = await window.showSaveFilePicker({
suggestedName: "text.txt"
});window.showDirectoryPicker
window.showDirectoryPicker({
startIn: "downloads",
mode: "readwrite"
})最后更新于