Skip to main content
Tab

DataSourceFileSystemProvider.CreateFolder(FileManagerFolder, String) Method

Implements folder creation.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public override void CreateFolder(
    FileManagerFolder parent,
    string name
)

Parameters

Name Type Description
parent FileManagerFolder

A FileManagerFolder value that is the immediate parent folder to which the created folder belongs.

name String

A String value that is the name of the created folder.

Remarks

The CreateFolder method implements folder creation when the default DataSourceFileSystemProvider is used.

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

See Also