> 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: onFolderUpdated(event: FolderUpdated) # Method package: wixMediaV2 # Method menu location: wixMediaV2 --> onFolderUpdated # Method Link: https://dev.wix.com/docs/velo/events-service-plugins/media/events/on-folder-updated.md # Method Description: Triggered when a folder is updated, including when a folder is moved to a different parent folder. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## An event that triggers when a folder is updated ```javascript // Place this code in the events.js file // of your site's Backend section. // Add the file if it doesn't exist. export function wixMediaSiteMedia_onFolderUpdated(event) { const displayName = event.entity.displayName; const parentFolderId = event.entity.parentFolderId; const eventTime = event.metadata.eventTime; console.log(`Folder, "${displayName}," that is found in the folder with ID ${parentFolderId}, was updated at ${eventTime}.`); } /* Full event object: * { * "entity": { * "_createdDate": "2023-08-21T05:34:03.000Z", * "_id": "302fc049d70c41dea33fa4a27ab481ba", * "_updatedDate": "2023-09-18T10:20:49.000Z", * "displayName": "Folder31", * "parentFolderId": "media-root" * }, * "metadata": { * "entityId": "302fc049d70c41dea33fa4a27ab481ba", * "eventTime": "2023-09-18T10:20:50.411Z", * "id": "f5b62b5f-9f83-41d3-b0cd-8cae506b3d35", * "triggeredByAnonymizeRequest": false * } * } */ ``` ---