> 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: Folders ## Article: Introduction ## Article Link: https://dev.wix.com/docs/velo/apis/wix-media-v2/folders/introduction.md ## Article Content: --- title: Introduction --- # Introduction The Folders API allows you to manage the folders in your Media Manager. With the Folders API, you can: - [Get](wix-media-v2/folders/get-folder), [list](wix-media-v2/folders/list-folders), and [search](wix-media-v2/folders/search-folders) folders. - [Create](wix-media-v2/folders/create-folder), [update](wix-media-v2/folders/update-folder), and [delete](wix-media-v2/folders/bulk-delete-folders) folders. - [Restore](wix-media-v2/folders/bulk-restore-folders-from-trash-bin) folders from the trash bin. - [Generate URLs](wix-media-v2/folders/generate-folder-download-url) for downloading folders from the Media Manager. Learn more about [Media Manager](https://support.wix.com/en/article/wix-media-about-the-media-manager) and how to access it. ## Before You Begin To use the Folders API, import `{ folders }` from the `wix-media.v2` module: ```javascript import { folders } from 'wix-media.v2'; ```