PhysicalFileSystemProvider.CopyFolder(FileManagerFolder, FileManagerFolder) Method
Implements folder copying.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.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 a folder to which the current folder is being copied. |
Remarks
The CopyFolder method implements copying a folder when the PhysicalFileSystemProvider is used.
If you create a custom file system provider inherited from the PhysicalFileSystemProvider class, you can override the CopyFolder method to perform any custom actions when an end-user copies a folder.
See Also