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

DataSourceFileSystemProvider.CopyFolder(FileManagerFolder, FileManagerFolder) Method

Implements folder copying.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public override void CopyFolder(
    FileManagerFolder folder,
    FileManagerFolder newParentFolder
)

Parameters

Name Type Description
folder FileManagerFolder

A FileManagerFolder object that is the copied folder.

newParentFolder FileManagerFolder

A FileManagerFolder object that is a folder to which the current folder is being copied.

Remarks

The CopyFolder method implements copying 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 CopyFolder method to perform any custom actions when an end-user copies a folder.

See Also