> 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 # Method name: getFolderInfo(folderId: string) # Method package: wixMediaBackend # Method menu location: wixMediaBackend --> MediaManager --> getFolderInfo # Method Link: https://dev.wix.com/docs/velo/apis/wix-media-backend/media-manager/get-folder-info.md # Method Description: Gets a folder's information from the Media Manager by `folderId`. The `getFolderInfo()` function returns a Promise that resolves to information about the specified folder. The `folderId` property is the internal name (unique identifier) which is generated when a folder is created by the Media Manager. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Get a folder's information ```javascript import { Permissions, webMethod } from 'wix-web-module'; import { mediaManager } from 'wix-media-backend'; const folderId = "1bf317e889264736b5acb367415fad8e"; export const myGetFolderInfoFunction = webMethod(Permissions.Anyone, async () => { try { const myFolder = await mediaManager.getFolderInfo(folderId); const folderName = myFolder.folderName; const updatedDate = myFolder._updatedDate; return myFolder; } catch (error) { console.error(error); } }); /* Returns a promise that resolves to: * { * "folderId": "1bf317e889264736b5acb367415fad8e", * "folderName": "greatfolder1", * "parentFolderId": "media-root", * "_createdDate": "Sun December 4 2020 14:56:15 GMT+0300", * "_updatedDate": "Wed May 12 2021 14:56:15 GMT+0300" * } */ ``` ---