Tauri open

2024-01-31 17:14 更新
open(: ?OpenDialogOptions?Since: 1.0.0Since: 1.0.0): ?Promise?< | |options?nullstring string[]>

打開文件/目錄選擇對(duì)話框。

所選路徑將添加到文件系統(tǒng)和資產(chǎn)協(xié)議允許列表范圍。 當(dāng)安全性比此 API 的易用性更重要時(shí), 最好編寫專用命令。

請(qǐng)注意,允許列表范圍更改不會(huì)保留,因此在重新啟動(dòng)應(yīng)用程序時(shí)會(huì)清除這些值。 您可以使用 ?tauri-plugin-persisted-scope? 將其保存到文件系統(tǒng)中。

import { open } from '@tauri-apps/api/dialog';
// Open a selection dialog for image files
const selected = await open({
multiple: true,
filters: [{
name: 'Image',
extensions: ['png', 'jpeg']
}]
});
if (Array.isArray(selected)) {
// user selected multiple files
} else if (selected === null) {
// user cancelled the selection
} else {
// user selected a single file
}

import { open } from '@tauri-apps/api/dialog';
import { appDir } from '@tauri-apps/api/path';
// Open a selection dialog for directories
const selected = await open({
directory: true,
multiple: true,
defaultPath: await appDir(),
});
if (Array.isArray(selected)) {
// user selected multiple directories
} else if (selected === null) {
// user cancelled the selection
} else {
// user selected a single directory
}

Since: 1.0.0

參數(shù)

名字類型
optionsOpenDialogOptions

Returns: ?Promise?< | |nullstring string[]>

解析到所選路徑的 promise


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)