Skip to content
On this page

FileSystemManager.ftruncateSync

FileSystemManager.ftruncate 的同步方法

参数

参数类型默认值必填说明
fdstring文件描述符。通过 FileSystemManager.open 接口获得
lengthnumber截断位置,默认0。如果 length 小于文件长度(单位:字节),则只有前面 length 个字节会保留在文件中,其余内容会被删除;如果 length 大于文件长度,则会对其进行扩展,并且扩展部分将填充空字节('')

返回值

string fd

文件描述符

Example

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