File
my.getSavedFileList
Get the list of all saved files.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Get the list of all saved files.
| Property | Type | Required | Description |
|---|---|---|---|
| success | Function | No | Callback with file list |
| fail | Function | No | Callback on failure |
| complete | Function | No | Callback that always executes |
| Property | Type | Description |
|---|---|---|
| fileList | Array | Array of file objects with apFilePath, size, createTime |
my.getSavedFileList({
success: (res) => {
res.fileList.forEach(file => {
console.log(file.apFilePath, file.size);
});
}
});