FileSystemProviderBase.CopyFolder(FileManagerFolder, FileManagerFolder) Method
Override this method to implement copying a folder.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
public virtual 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
If you create a custom file system provider inherited from the FileSystemProviderBase class, you can override the CopyFolder method to copy a folder.
By default, the method has no implementation and should be overridden if copying folders is allowed (the FileManagerSettingsEditing.AllowCopy property is set to true
).
See Also