Skip to main content
Tab

OneDriveFileSystemProviderBase.GetFolders(FileManagerFolder) Method

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.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 OneDriveFileSystemProviderBase is used.

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

See Also