Skip to content
On this page

FileSystemManager.stat

以 Promise 风格调用:不支持

获取文件 Stats 对象

参数

参数类型默认值必填说明
pathstring文件/目录路径 (本地路径)
recursiveboolean是否递归获取目录下的每个文件的 Stats 信息
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

成功返回

属性类型说明
statsStats当 recursive 为 false 时,res.stats 是一个 Stats 对象。当 recursive 为 true 且 path 是一个目录的路径时,res.stats 是一个 Array,数组的每一项是一个对象,每个对象包含 path 和 stats。

Example

ts
const fs = ek.getFileSystemManager()
fs.stat({
  path: `${ek.env.USER_DATA_PATH}/example`,
  success: res => {
    console.log(res.stats.isDirectory())
  },
  fail: err => {
    console.error(err)
  }
})