Skip to main content
Tab

AmazonFileSystemProvider.CopyFolder(FileManagerFolder, FileManagerFolder) Method

Implements folder copying.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

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 the folder to which the current folder is being copied.

Remarks

The CopyFolder method implements copying a folder when the AmazonFileSystemProvider is used.

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

See Also