Gets files from the specified directory using globbing patterns.
- Namespace
- Statiq
.Common - Containing Type
- Globber
Syntax
public static IEnumerable<IFile> GetFiles(IDirectory directory, params string[] patterns)
Remarks
Note that the provided patterns will be combined and any exclusions will apply to all other provided patterns.
If they should be evaluated in isolation, multiple calls should be performed.
Parameters
Name | Type | Description |
---|---|---|
directory | IDirectory | The directory to search. |
patterns | string[] | The globbing pattern(s) to use. |
Return Value
Type | Description |
---|---|
IEnumerable |
Files that match the globbing pattern(s). |