my.saveFile.
File
my.removeSavedFile
Remove a saved file.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Remove a saved file.
my.saveFile.
| Property | Type | Required | Description |
|---|---|---|---|
| apFilePath | String | Yes | File path to remove |
| success | Function | No | Callback on success |
| fail | Function | No | Callback on failure |
| complete | Function | No | Callback that always executes |
my.removeSavedFile({
apFilePath: filePath,
success: () => {
console.log('File removed');
}
});