> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Files ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-media-v2/files/introduction.md ## Article Content: --- title: Introduction --- # Introduction The Files API allows you to manage files and generate file urls from your Media Manager. With the Files API, you can: - [Get](/wix-media-v2/files/get-file-descriptor), [list](/wix-media-v2/files/list-files), and [search](/wix-media-v2/files/search-files) files. - [Import](/wix-media-v2/files/import-file), [update](/wix-media-v2/files/update-file-descriptor), and [delete](/wix-media-v2/files/bulk-delete-files) files. - [Restore](/wix-media-v2/files/bulk-restore-files-from-trash-bin) files from the trash bin. - Generate URLs for: - [Downloading files](/wix-media-v2/files/generate-file-download-url). - [Downloading a compressed file](/wix-media-v2/files/generate-files-download-url). - [Uploading files](/wix-media-v2/files/generate-file-upload-url). - [Uploading files larger than 10MB](/wix-media-v2/files/generate-file-resumable-upload-url). - [Streaming video files](/wix-media-v2/files/generate-video-streaming-url). ## Before You Begin To use the Files API, import `{ files }` from the `wix-media.v2` module: ```javascript import { files } from 'wix-media.v2'; ```