跳至主要內容

VFS

BFChainserviceService小于 1 分钟

虚拟文件API。

可单独导出的API:ls,list,mkdir,rm,read,write,也可以直接导出fs,其挂载着上述的API。

导出文件类型EFilterType

包含:EFilterType.file,EFilterType.directroy

ls

获取文件列表。

example

import { ls, EFilterType } from "@bfsx/vfs"
const lsFileList = await ls("/", {
  filter: [
    {
      type: EFilterType.file,
      name: ["*.ts", "index"]
    },
    {
      type: EFilterType.directroy,
      name: ["core"]
    }],
  recursive: true
})
console.log("vfs测试:获取ls : ", lsFileList)
评论
  • 按正序
  • 按倒序
  • 按热度
Powered by Waline v2.15.7