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:

PropertyType

Required

Description
successFunctionNoCallback function upon call success.
failFunctionNoCallback function upon call failure.
completeFunctionNoCallback 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:

PropertyTypeDescription
fileListListFile list.

File Object Attribute

PropertyTypeDescription
sizeNumberFile size.
createTimeNumberCreated time.
apFilePathStringFile path.