Tauri fs

2024-02-01 15:36 更新

访问文件系统。

当 ​build.withGlobalTauri ​设置为 in  时,也可以访问此包。window.__TAURI__.fstauri.conf.jsontrue

必须将 API 添加到 ​tauri.allowlist.fs​ 中:tauri.conf.json

{
  "tauri": {
    "allowlist": {
      "fs": {
        "all": true, // enable all FS APIs
        "readFile": true,
        "writeFile": true,
        "readDir": true,
        "copyFile": true,
        "createDir": true,
        "removeDir": true,
        "removeFile": true,
        "renameFile": true,
        "exists": true
      }
    }
  }
}

建议仅将您使用的 API 列入许可列表,以获得最佳捆绑包大小和安全性。


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号