my.getSavedFileList
Get information of all saved files.
Sample Code
copy
my.getSavedFileList({
success:(res)=>{
console.log(JSON.stringify(res))
}
});
Parameters
Object type with the following attributes:
Property | Type | Required | Description |
success | Function | No | Callback function upon call success. |
fail | Function | No | Callback function upon call failure. |
complete | Function | No | Callback function upon call completion (to be executed upon either call success or failure). |
Success Callback Function
The incoming parameter is of the Object type with the following attributes:
Property | Type | Description |
fileList | List | File list. |
File Object Attribute
Property | Type | Description |
size | Number | File size. |
createTime | Number | Created time. |
apFilePath | String | File path. |