FileSystemProviderBase.CopyFolder(FileManagerFolder, FileManagerFolder) Method
In This Article
Override this method to implement copying a folder.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public virtual void CopyFolder(
FileManagerFolder folder,
FileManagerFolder newParentFolder
)
#Parameters
Name | Type | Description |
---|---|---|
folder | File |
A File |
new |
File |
A File |
#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