Skip to main content
A newer version of this page is available. .
Tab

PhysicalFileSystemProvider.MoveFolder(FileManagerFolder, FileManagerFolder) Method

Implements folder moving.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.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 PhysicalFileSystemProvider is used.

If you create a custom file system provider inherited from the PhysicalFileSystemProvider class, you can override the MoveFolder method to perform any custom actions when an end-user moves a folder.

See Also