Skip to main content
Tab

PhysicalFileSystemProvider.RenameFolder(FileManagerFolder, String) Method

Implements folder renaming.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public override void RenameFolder(
    FileManagerFolder folder,
    string name
)

Parameters

Name Type Description
folder FileManagerFolder

A FileManagerFolder object that is the renamed folder.

name String

A String value specifying a new folder name.

Remarks

The RenameFolder method implements renaming 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 RenameFolder method to perform any custom actions when an end-user renames a folder.

See Also