Skip to content
On this page

FileSystemManager.fstatSync

FileSystemManager.fstat 的同步方法

参数

参数类型默认值必填说明
fdstring文件描述符。通过 FileSystemManager.open 接口获得

返回值

string fd

文件描述符

Example

ts
const fs = ek.getFileSystemManager()
try {
  const fd = fs.openSync({ filePath: `${ek.env.USER_DATA_PATH}/hello.txt`, flag: 'a+' })
  const stats = fs.fstatSync({ fd })
  console.log(stats)
} catch (e) {
  console.log(e)
}