DataSourceFileSystemProvider.MoveFolder(FileManagerFolder, FileManagerFolder) Method
Implements folder moving.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
public override void MoveFolder(
FileManagerFolder folder,
FileManagerFolder newParentFolder
)
Parameters
Name | Type | Description |
---|---|---|
folder | FileManagerFolder | A FileManagerFolder object that is the moved folder. |
newParentFolder | FileManagerFolder | A FileManagerFolder object that is a folder where the current folder is being moved. |
Remarks
The MoveFolder method implements moving a folder when the default DataSourceFileSystemProvider is used.
If you create a custom file system provider inherited from the DataSourceFileSystemProvider class, you can override the MoveFolder method to perform any custom actions when an end-user moves a folder.
See Also