Skip to content
On this page

FileSystemManager.closeSync

FileSystemManager.close 的同步方法

参数

参数类型默认值必填说明
fdstring需要被关闭的文件描述符。fd 通过 FileSystemManager.open 接口获得

Example

ts
const fs = ek.getFileSystemManager()
const filePath = `${ek.env.USER_DATA_PATH}/hello.txt`
try {
  const fd = fs.openSync({ filePath })
  // ...
  fs.closeSync({ fd })
} catch (e) {
  console.log(e)
}