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

# Attachments

Gleap allows you to attach files to feedback items. This enables you to include application-specific information that Gleap doesn't collect by default.

### Add attachments

Gleap offers the following method to attach files to your feedback items. Attachments are incremental — they are **not** removed after sending feedback (many customers requested this). If you need to start over fresh after each report, use the `RemoveAllAttachments` method.

```csharp theme={null}
Gleap.AddAttachment(yourBase64File, "image.png");
```

<Info>
  The file size is limited to **1MB** per file, and the maximum file count is
  **6 files**. These limits make sure the user doesn't have to transfer too much
  data while sending feedback.
</Info>

### Remove attachments

Use the following method to remove all attachments.

```csharp theme={null}
Gleap.RemoveAllAttachments();
```
