ASPxFileManager.FolderCreated Event
Occurs on the server side after a folder has been created.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Event Data
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. |
Remarks
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.