> 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: onFolderDeleted(event: FolderDeleted) # Method package: wixMediaV2 # Method menu location: wixMediaV2 --> onFolderDeleted # Method Link: https://dev.wix.com/docs/velo/events-service-plugins/media/events/on-folder-deleted.md # Method Description: Triggered when a folder is deleted. If the `movedToTrash` property in the event object is `true`, the folder was moved to the Media Manager's trash bin. If the `movedToTrash` property in the event object is `false`, the folder was permanently deleted. # 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 deleted ```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_onFolderDeleted(event) { const folderId = event.metadata.entityId; const eventTime = event.metadata.eventTime; console.log(`Folder with ID ${folderId} was deleted at ${eventTime}.`) } /* Full event object: * { * "metadata": { * "entityId": "a7b49f96836a48febefb10f669c14ab0", * "eventTime": "2023-09-18T10:25:38.721Z", * "id": "2ce042ce-3a31-4c3a-8b34-4c5e223a4b15", * "triggeredByAnonymizeRequest": false * } * } */ ``` ---