Taro.getSavedFileInfo(option)
Gets the information of local files. This API can only be used to obtain the information of files that have been saved to the local device. To obtain information of temporary files, use Taro.getFileInfo()
API.
Type
(option: Option) => Promise<SuccessCallbackResult>
Parameters
Option
Property | Type | Required | Description |
---|---|---|---|
filePath | string | Yes | File path |
complete | (res: any) => void | No | The callback function used when the API call completed (always executed whether the call succeeds or fails) |
fail | (res: any) => void | No | The callback function for a failed API call |
success | (res: Result) => void | No | The callback function for a successful API call |
SuccessCallbackResult
Property | Type | Description |
---|---|---|
createTime | number | The timestamp when the file was saved, which is defined as the number of seconds that have elapsed since 1970/01/01 08:00:00 to the current time |
size | number | File size in bytes |
errMsg | string | Call result |
Sample Code
Taro.getSavedFileInfo({
filePath: 'wxfile://somefile',
success: function (res) {
console.log(res.size)
console.log(res.createTime)
}
})
API Support
API | WeChat Mini-Program | H5 | React Native |
---|---|---|---|
Taro.getSavedFileInfo | ✔️ | ✔️ |