> ## Documentation Index
> Fetch the complete documentation index at: https://bruno-a6972042-tutor-mock-server.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Create a Folder

Bruno helps you organize your API requests efficiently by grouping them into folders. You can create a structured hierarchy that matches your API's organization, making it easier to manage and navigate your collections.

## Creating a New Folder

1. Select your Collection from the sidebar.
2. Click on the `···` button.
3. Select `New Folder` from the dropdown menu.

<img src="https://mintcdn.com/bruno-a6972042-tutor-mock-server/Jc_rhkgsDOD1EyDt/images/screenshots/get-started/bruno-basics/create-folder/1-create-new-folder.webp?fit=max&auto=format&n=Jc_rhkgsDOD1EyDt&q=85&s=877f2e503e84769f71f3dad2aaa354f1" alt="create folder" width="2480" height="1046" data-path="images/screenshots/get-started/bruno-basics/create-folder/1-create-new-folder.webp" />

4. Enter a name for your folder.
5. Click `Create` to finish.

<img src="https://mintcdn.com/bruno-a6972042-tutor-mock-server/Jc_rhkgsDOD1EyDt/images/screenshots/get-started/bruno-basics/create-folder/2-create-sample-folder.webp?fit=max&auto=format&n=Jc_rhkgsDOD1EyDt&q=85&s=53f929fc80141c3e6db55087bc337e88" alt="new folder dialog" width="2480" height="1046" data-path="images/screenshots/get-started/bruno-basics/create-folder/2-create-sample-folder.webp" />

Your new folder is now ready to organize your requests!

## Ignore folders

You can hide folders from a collection without deleting them. Ignoring a folder adds it to the collection's ignore config and removes it from the sidebar. This is useful for folders that should stay on disk (for example assets, fixtures, or generated files) but should not appear as part of the runnable collection.

1. Right-click a folder in the collection sidebar (or use the `···` menu).
2. Select **Ignore**.
3. Bruno adds the folder to the collection ignore config and the folder disappears from the sidebar.

<img src="https://mintcdn.com/bruno-a6972042-tutor-mock-server/Iy1qgjWbq6Y1fgCQ/images/screenshots/v4/chores/ignore-folder.webp?fit=max&auto=format&n=Iy1qgjWbq6Y1fgCQ&q=85&s=7f3913e3612068da385bbad6e5a10b2e" alt="Ignore folder from the sidebar" width="2606" height="1308" data-path="images/screenshots/v4/chores/ignore-folder.webp" />

<Info>
  You no longer need to hand-edit the collection config file to ignore a folder. Use the sidebar menu instead. Bruno updates `opencollection.yml` or `bruno.json` for you.
</Info>

### Config after ignoring a folder

After you ignore a folder such as `assets` from the UI, Bruno appends it to the ignore list. Existing entries like `node_modules` and `.git` stay unchanged.

<Tabs>
  <Tab title="OpenCollection YAML">
    ```yaml title="opencollection.yml" theme={null}
    extensions:
      bruno:
        ignore:
          - node_modules
          - .git
          - certificates
          - assets   # added when you choose Ignore on the assets folder
    ```
  </Tab>

  <Tab title="Bru Collections">
    ```json title="bruno.json" theme={null}
    {
      "ignore": [
        "node_modules",
        ".git",
        "certificates",
        "assets"
      ]
    }
    ```
  </Tab>
</Tabs>

In the example above, `assets` is the folder ignored from the sidebar. The folder remains on disk. It is only hidden from the collection tree.

## Custom Folder Names

You can use any characters in your folder names, including special characters like `/`, `[`, `]`, `*`, etc. Bruno automatically handles filesystem compatibility by replacing unsupported characters with `-` in the filenames while preserving your original folder name.

### How to View or Customize Filesystem Names

1. Select **Show Filesystem Name.**

<img src="https://mintcdn.com/bruno-a6972042-tutor-mock-server/Jc_rhkgsDOD1EyDt/images/screenshots/get-started/bruno-basics/create-folder/3-show-file-system-name.webp?fit=max&auto=format&n=Jc_rhkgsDOD1EyDt&q=85&s=6b12afc27223a1647c403e50bc2dedec" alt="show filesystem name" width="2480" height="1046" data-path="images/screenshots/get-started/bruno-basics/create-folder/3-show-file-system-name.webp" />

2. You can now see how your folder name is stored on the filesystem.

<img src="https://mintcdn.com/bruno-a6972042-tutor-mock-server/Jc_rhkgsDOD1EyDt/images/screenshots/get-started/bruno-basics/create-folder/4-file-system-name.webp?fit=max&auto=format&n=Jc_rhkgsDOD1EyDt&q=85&s=53c638927dd2d6eebc4dcfa888a30fe5" alt="filesystem name view" width="2480" height="1046" data-path="images/screenshots/get-started/bruno-basics/create-folder/4-file-system-name.webp" />

3. (Optional) Click the edit icon to customize the filesystem name while keeping your display name intact.

This feature allows you to:

* Create more descriptive folder organization.
* Use special characters freely.
* Maintain filesystem compatibility automatically.
* Keep your collection structure clean and organized.

### Example

You could name a folder "API \[v2.0] / Authentication" and Bruno will automatically handle the filesystem compatibility while preserving your desired display name.
