> 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: onFileDescriptorDeleted(event: FileDescriptorDeleted) # Method package: wixMediaV2 # Method menu location: wixMediaV2 --> onFileDescriptorDeleted # Method Link: https://dev.wix.com/docs/velo/events-service-plugins/media/events/on-file-descriptor-deleted.md # Method Description: Triggered when a file is deleted. If the `movedToTrash` property in the event object `true`, the file was moved to the Media Manager's trash bin. If the `movedToTrash` property in the event object is `false`, the file 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 file 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_onFileDescriptorDeleted(event) { const eventTime = event.metadata.eventTime; const entityId = event.metadata.entityId; console.log(`File with ID ${entityId} was deleted at ${eventTime}.`); } /* Full event object: * { * "metadata": { * "entityId": "d4dde1_e26da94b5cb440649ede0c433425449c~mv2.jpg", * "eventTime": "2023-09-18T10:22:56.532Z", * "id": "c5ad126c-26f0-4ccf-a53c-fa43ea1428bf", * "triggeredByAnonymizeRequest": false * } * } */ ``` ---