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

# Files overview

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = localizeLink(href);
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

Files, together with <Link href="/guides/folders">Folders</Link>, are at the core of the Box API. Files
can be <Link href="/guides/uploads">uploaded</Link> and <Link href="/guides/downloads">downloaded</Link>, as well as hold
important metadata information about the content.
