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

# Files

> Browse and manage the files inside a project — list, open, rename, move, copy, duplicate, and delete.

Every project has a file browser for the documents and uploads it holds — reports (`.sdoc`), dashboards (`.sdash`), decks (`.sdeck`), uploaded files (CSV, Excel, PDF, and more), and folders. It lives inside a project's workspace at `/projects/{projectId}`.

## Browse files

<Tabs sync={false}>
  <Tab title="In the app">
    The file list shows each file and folder with its type, who created it, and when it was created and last modified. Use the folder tree on the left, the **All Files** filter, or **Search** to find things.

    <Frame caption="The project file browser">
      <img src="https://mintcdn.com/summation-676748f5/bD5B6OO2CVOWNhOR/images/features/projects/files/files-browser.png?fit=max&auto=format&n=bD5B6OO2CVOWNhOR&q=85&s=2d59137da320e3bf44754ca351f14a02" alt="A project's file browser for a private project titled 'My Project' ('Your private project for your work') with a 'Start a new chat in My Project' composer. A left sidebar titled 'Project files' shows a folder tree with Dashboards, data, Data Context, Reports (expanded), and snapshots folders plus files such as 'Olympics Medals Leaderboard.spb', 'Olympics Player.spb', and 'Plushie Sales Analysis.srb'. The main pane shows the 'Reports' folder (breadcrumb All Files / Reports) in a table with Name, Created by, Created at, and Last modified columns, listing a folder and Olympics demo files including 'Olympics Player - Korea (All Years).sdoc', 'London 2012 at a Glance.html', 'Olympics Medals Leaderboard - 2012.sdoc', and 'Olympic History Lesson.sdeck', with an All Files filter, a Search box, and Import and Create buttons at the top." width="2858" height="1764" data-path="images/features/projects/files/files-browser.png" />
    </Frame>
  </Tab>

  <Tab title="Via the API">
    <Card title="GET /v1/projects/{projectId}/files" icon="code" href="/api-reference/files/list-or-search-files" horizontal>
      List or search a project's files.
    </Card>

    <Card title="GET /v1/projects/{projectId}/files/{fileId}" icon="code" href="/api-reference/files/show-file" horizontal>
      Show a file's metadata.
    </Card>

    <Card title="GET /v1/projects/{projectId}/files/{fileId}/content" icon="code" href="/api-reference/files/download-file-content" horizontal>
      Download a file's content.
    </Card>
  </Tab>
</Tabs>

## Manage a file

<Tabs sync={false}>
  <Tab title="In the app">
    Hover a file and open its **⋯** menu to **Open in new tab**, **Rename**, **Move** (to another folder), **Copy to** (another project), **Duplicate**, or **Delete** it.

    <Frame caption="A file's ⋯ menu">
      <img src="https://mintcdn.com/summation-676748f5/bD5B6OO2CVOWNhOR/images/features/projects/files/file-actions-menu.png?fit=max&auto=format&n=bD5B6OO2CVOWNhOR&q=85&s=c3849fac8cdc3a50f925fb23e55534d8" alt="A file row's ⋯ menu open on 'Olympics Player - Korea (All Years).sdoc' in a file list, showing: Open in new tab, Rename, Move, Copy to, Duplicate, Download (with a submenu arrow), and Delete (in red). Nearby rows list 'London 2012 at a Glance.html', 'Olympics Medals Leaderboard - 2012.sdoc', 'Olympics Player - Japan (All Years).sdoc', and 'Olympic History Lesson.sdeck'." width="1898" height="724" data-path="images/features/projects/files/file-actions-menu.png" />
    </Frame>
  </Tab>

  <Tab title="Via the API">
    <Card title="PUT /v1/projects/{projectId}/files/content" icon="code" href="/api-reference/files/write-file-content" horizontal>
      Create or overwrite a file's content.
    </Card>

    <Card title="DELETE /v1/projects/{projectId}/files/{fileId}" icon="code" href="/api-reference/files/delete-file" horizontal>
      Delete a file. Requires `confirm=true`.
    </Card>

    <Card title="Coming soon" icon="clock" horizontal>
      Rename, move, copy, and duplicate files.
    </Card>
  </Tab>
</Tabs>
