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

# File uploads

> Collect files or attachments of any kind. Optionally restrict to certain file types or maximum file sizes.

export const SupportBanner = () => {
  const titleId = React.useId();
  return <div className="support-banner" role="region" aria-labelledby={titleId}>
      <span className="support-banner__ring support-banner__ring--outer" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--middle" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--inner" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--center" aria-hidden="true" />

      <div className="support-banner__content">
        <div className="support-banner__title" id={titleId} role="heading" aria-level="2">Still have questions?</div>

        <div className="support-banner__copy">
          <span className="support-banner__line">Our team is happy to help. Start a live chat using the</span>
          <span className="support-banner__line">
            chat bubble <span className="support-banner__chat-icon" aria-hidden="true" /> in the bottom right, or email us at
          </span>
          <span className="support-banner__line">
            <a href="mailto:support@fillout.com">support{'@'}fillout.com</a>
          </span>
        </div>

        <a className="support-banner__cta" href="mailto:support@fillout.com">Contact us</a>
      </div>
    </div>;
};

## How to add a file upload field

Drag and drop the `File uploader` field onto your form.

<img src="https://mintcdn.com/fillout-005a867b/Ez63Uc0rY1bU_cVR/images/Screenshot2025-10-02at6.54.40PM.png?fit=max&auto=format&n=Ez63Uc0rY1bU_cVR&q=85&s=32bd9478a0bca657602add38b71062e7" alt="Screenshot 2025-10-02 at 6.54.40 PM.png" width="2652" height="1437" data-path="images/Screenshot2025-10-02at6.54.40PM.png" />

### Upload limits

The size limitations per individual file uploads vary per plan, however there is no restriction on total files uploaded, as long as usage is within our [**fair use policy**](https://www.fillout.com/help/fair-use-policy).

|                             | **Free**    | **Starter** | **Pro**     | **Business** | Enterprise | Team       |
| --------------------------- | ----------- | ----------- | ----------- | ------------ | ---------- | ---------- |
| Max size per file upload    | Up to 20 MB | Up to 20 MB | Up to 20 MB | Up to 1 GB   | Up to 5 GB | Up to 1 GB |
| No. of file uploads allowed | Unlimited   | Unlimited   | Unlimited   | Unlimited    | Unlimited  | Unlimited  |

## Set file restrictions

Click your file upload question followed by <Icon icon="gear-complex" iconType="solid" />. In the right-hand panel, you can:

* Set the min and max no. of files allowed per submission
* Limit file size
* Limit accepted file types

<img src="https://mintcdn.com/fillout-005a867b/Ez63Uc0rY1bU_cVR/images/Screenshot2025-10-02at7.10.18PM.png?fit=max&auto=format&n=Ez63Uc0rY1bU_cVR&q=85&s=acc21d19601df271d7d2ae417441698d" alt="Screenshot 2025-10-02 at 7.10.18 PM.png" title="Screenshot 2025-10-02 at 7.10.18 PM.png" style={{ width:"34%" }} width="476" height="1116" data-path="images/Screenshot2025-10-02at7.10.18PM.png" />

## Viewing uploaded files

You can view uploaded files from any submission on the `Results` page from the top menu.

If you prefer, integrate your form with [Dropbox](/help/dropbox) or [Google Drive](/help/google-drive) to send all file uploads to a specific external directory.

## Related articles

<CardGroup cols={3}>
  <Card color="#FFC738" icon="box-open" iconType="regular" href="/help/dropbox" title="Sync file uploads to Dropbox">
    Automatically upload files with a form.
  </Card>

  <Card color="#FFC738" icon="google-drive" iconType="regular" href="/help/google-drive" title="Upload files to Google Drive">
    Automatically upload files with a form.
  </Card>

  <Card color="#FFC738" icon="clipboard" iconType="regular" href="/help/results" title="Results">
    Review individual submissions, summary, and analytics.
  </Card>
</CardGroup>

<SupportBanner />
