Skip to main content
A newer version of this page is available. .
Tab

PhysicalFileSystemProvider.GetFolders(FileManagerFolder) Method

Implements getting a collection of folders that are located in the current folder.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public override IEnumerable<FileManagerFolder> GetFolders(
    FileManagerFolder parentFolder
)

Parameters

Name Type Description
parentFolder FileManagerFolder

A FileManagerFolder object that is the folder currently being processed.

Returns

Type Description
IEnumerable<FileManagerFolder>

A collection of FileManagerFolder objects.

Remarks

The GetFolders method implements getting a collection of FileManagerFolder objects located in the current folder when the default PhysicalFileSystemProvider is used.

If you create a custom file system provider inherited from the PhysicalFileSystemProvider class, you can override the GetFolders method to perform any custom actions.

See Also