Skip to main content
Version: 3.x

Taro.getSavedFileInfo(option)

获取本地文件的文件信息。此接口只能用于获取已保存到本地的文件,若需要获取临时文件信息,请使用 Taro.getFileInfo 接口。

支持情况:

参考文档

类型

(option: Option) => Promise<SuccessCallbackResult>

参数

参数类型
optionOption

Option

参数类型必填说明
filePathstring文件路径
complete(res: TaroGeneral.CallbackResult) => void接口调用结束的回调函数(调用成功、失败都会执行)
fail(res: TaroGeneral.CallbackResult) => void接口调用失败的回调函数
success(result: SuccessCallbackResult) => void接口调用成功的回调函数

SuccessCallbackResult

参数类型说明
createTimenumber文件保存时的时间戳,从1970/01/01 08:00:00 到该时刻的秒数
sizenumber文件大小,单位 B
errMsgstring调用结果

示例代码

Taro.getSavedFileInfo({
filePath: 'wxfile://somefile', //仅做示例用,非真正的文件路径
success: function (res) {
console.log(res.size)
console.log(res.createTime)
}
})