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

FileSystemManager.getFileInfo
收藏
我的收藏

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

获取 临时目录 (ttfile://tmep) 或 用户目录 (ttfile://user) 下的文件信息。

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

语法

FileSystemManager.getFileInfo(options)

参数说明

options 为 object 类型,属性如下:

属性名类型默认值必填说明最低支持版本
filePathstring
要读取的文件路径
1.15.0
successfunction
接口调用成功的回调函数
1.15.0
failfunction
接口调用失败的回调函数
1.15.0
completefunction
接口调用结束的回调函数(调用成功、失败都会执行)
1.15.0

回调成功

object 类型,属性如下:

属性名类型说明最低支持版本
sizenumber
文件大小,以字节为单位
1.15.0
errMsgstring
"FileSystemManager.getFileInfo:ok"
1.15.0

回调失败

object 类型,属性如下:

属性名类型说明最低支持版本
errMsgstring
"FileSystemManager.getFileInfo:fail" + 详细错误信息
1.15.0

错误码

errorCodeerrMsgerrorType说明最低支持版本
111901permission denied, $apiName $filePathD
1.15.0
111902no such file or directory, $apiName $filePathD
1.15.0
111903operation not permitted, $apiName $filePathD
1.15.0
999991Internal error:sandbox is nilF
小游戏框架内部错误,有需要请创建工单咨询
1.15.0
999999params $paramName is requiredD
1.15.0
999999params $paramName type is not $paramType typeD
1.15.0
999999$paramName is invalidD
1.15.0
999999invalid paramD
参数错误
1.15.0
999993internal errorF
小游戏框架内部错误,有需要请创建工单咨询
1.15.0

代码示例

const fileSystemManager = tt.getFileSystemManager(); tt.chooseImage({ success(res) { getFileInfo(res.tempFilePaths[0]); }, }); function getFileInfo(filePath) { fileSystemManager.getFileInfo({ filePath, success(res) { console.log("文件信息:", res); }, fail(res) { console.log("调用失败", res.errMsg); }, }); }