aspnet-devexpress-dot-web-dot-aspxfilemanager-3b5fcd23.md
Occurs on the server side after a folder has been created.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public event FileManagerFolderCreatedEventHandler FolderCreated
Public Event FolderCreated As FileManagerFolderCreatedEventHandler
The FolderCreated event's data class is FileManagerFolderCreatedEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Folder | Gets a folder related to the event. |
| ParentFolder | Gets the folder where the currently processed folder has been created. |
The FolderCreated event serves as a notification that a folder has been created. You can use the event parameter’s properties to get a newly created folder (FileManagerFolderCreatedEventArgs.Folder) or a folder where the currently processed folder has been created (FileManagerFolderCreatedEventArgs.ParentFolder).
To specify whether a folder can be created, and cancel the action, handle the ASPxFileManager.FolderCreating event.
See Also