Skip to main content
Tab

DataSourceFileSystemProvider.GetFiles(FileManagerFolder) Method

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public override IEnumerable<FileManagerFile> GetFiles(
    FileManagerFolder folder
)

Parameters

Name Type Description
folder FileManagerFolder

A FileManagerFolder object that is the folder currently being processed.

Returns

Type Description
IEnumerable<FileManagerFile>

A collection of FileManagerFile objects.

Remarks

The GetFiles method implements getting a collection of FileManagerFile 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 GetFiles method to perform any custom actions.

See Also