DataSourceFileSystemProvider.GetFolders(FileManagerFolder) Method
Implements getting a collection of folders that are located in the current folder.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.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 DataSourceFileSystemProvider is used.
If you create a custom file system provider inherited from the DataSourceFileSystemProvider class, you can override the GetFolders method to perform any custom actions.
See Also