抖音开放平台Logo
开发者文档
控制台

FileSystemManager.truncateSync

收藏
我的收藏

基础库 3.1.0 开始支持本方法,这是一个同步方法。

对文件内容进行截断操作,只有用户目录ttfile://user下的文件可以截断。

前提条件
业务背景
使用限制
注意事项
相关教程

语法

FileSystemManager.truncateSync(filePath, length)

参数说明

filePath

类型默认值必填说明最低支持版本
string
要截断的文件路径,必须是用户目录,以 ttfile://user 开头
3.1.0

length

类型默认值必填说明最低支持版本
number0

截断长度,要求是自然数。若 length < 文件长度(字节),则前 length 个字节内容会保留在文件中,其余内容删除;若 length > 文件长度,则会对文件进行扩展,扩展部分将填充空字节 '\0'

3.1.0

返回值

错误码

errorCodeerrMsgerrorType说明最低支持版本
999991inetrnal errorF
小游戏框架内部错误,有需要请创建工单咨询
3.1.0
113801permission denied, %s%sD
3.1.0
113802no such file or directory, %s%sD
3.1.0
113804user dir saved file size limit exceededD
3.1.0
113803operation not permitted, %s%sD
3.1.0
999993internal errorF
小游戏框架内部错误,有需要请创建工单咨询
3.1.0
999999invalid paramD
参数错误
3.1.0

代码示例

const fs = tt.getFileSystemManager(); fs.truncate({ filePath: `ttfile://user/example.txt`, length: 10, success(res) { console.log(res) }, fail(res) { console.error(res) }, }); // 同步接口 try { fs.truncateSync(`ttfile://user/example.txt`, 10); } catch (e) { console.error(e); }