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

# Files your clinic has shared with you

> View and download scans, letters and other files your clinic has chosen to share with you through the portal.

export const Availability = ({editions = ['all'], plans, roles, note}) => {
  const list = editions.includes('all') ? ['clinic', 'pharmacy', 'lims'] : editions;
  return <div className="ck-avail" role="note" aria-label="Feature availability">
      <span className="ck-avail__label">Available in</span>

      {list.map(e => <span key={e} className={`ck-pill ck-pill--${e}`}>
          {EDITION_LABELS[e] || e}
        </span>)}

      {plans ? <span className="ck-avail__label">Plan</span> : null}
      {plans ? <span className="ck-pill ck-pill--plan">{plans}</span> : null}

      {roles ? <span className="ck-avail__label">Who</span> : null}
      {roles ? <span className="ck-pill ck-pill--role">{roles}</span> : null}

      {note ? <span className="ck-avail__note">{note}</span> : null}
    </div>;
};

<Availability editions={['portal']} note="A file only appears once a staff member at your clinic chooses to share it — nothing is shared automatically." />

**Files** is where your clinic shares things they've uploaded about you that aren't a form or a signed document — a scan, a referral letter, a report from another practice. Select **Files** in the list on the left of the portal.

This is different from **Documents**, which is for paperwork your clinic sends you to read and sign — see [Read and sign documents](/portal/patients/documents).

## What you see

Each file shows its name, size, the folder your clinic filed it under, and when it was shared with you. Use the search box to find one by name or folder.

If the list is empty, your clinic hasn't shared any files with you yet — that doesn't mean none exist, only that none have been shared. Ask your clinic if you're expecting something.

## Opening a file

Select a file to open it in the portal's own viewer — nothing downloads to your device just to look at it. A photo or scan opens inline; a PDF is shown page by page; a Word document (`.docx`) shows as formatted text, with a note that formatting may differ slightly from the original; a plain text or Markdown file shows as text. Some file types have no preview — you can still download them.

## Downloading a file

Select **Download** at any time, for any file — it's your own record, so there's no confirmation to get past and no restriction on staff downloads applies to you. The file saves with its original name.

## Good to know

* **Your clinic decides what's shared, and when.** A file can be shared and later un-shared — if something you were viewing disappears from the list, your clinic has stopped sharing it; the file itself hasn't been deleted from their records.
* **A file your clinic has marked sensitive is never shared here**, even if a staff member tries — your clinic's system refuses it.
* If your access to the portal is through a parent or guardian's account and some categories of your record are restricted, a shared file in one of those categories won't appear either — see [Privacy & Security](/portal/patients/privacy-and-security).
