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