> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rebellapp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# my.removeSavedFile

> Remove a saved file.

Delete a file that was saved with `my.saveFile`.

## Parameters

| 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 |

## Code Example

```javascript theme={null}
my.removeSavedFile({
  apFilePath: filePath,
  success: () => {
    console.log('File removed');
  }
});
```
