FileSystemManager.ftruncate
以 Promise 风格调用:不支持
对文件内容进行截断操作
参数
参数 | 类型 | 默认值 | 必填 | 说明 |
---|---|---|---|---|
fd | string | 是 | 文件描述符。通过 FileSystemManager.open 接口获得 | |
length | number | 否 | 截断位置,默认0。如果 length 小于文件长度(单位:字节),则只有前面 length 个字节会保留在文件中,其余内容会被删除;如果 length 大于文件长度,则会对其进行扩展,并且扩展部分将填充空字节(' ') | |
success | function | 否 | 接口调用成功的回调函数 | |
fail | function | 否 | 接口调用失败的回调函数 | |
complete | function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
Example
ts
const fs = ek.getFileSystemManager()
const fd = fs.open({
filePath: `${ek.env.USER_DATA_PATH}/hello.txt`,
flag: 'a+',
success: res => {
fs.ftruncate({
fd: res.fd,
length: 10, // 从第10个字节开始截断文件
success: res => {
console.log(res)
}
})
}
})