Summary
Gets matching files based on globbing patterns and/or absolute paths. If any absolute paths
are provided, only those that actually exist are returned.
Syntax
public IEnumerable<IFile> GetFiles(IDirectory directory, IEnumerable<string> patterns)
Parameters
Name |
Type |
Description |
directory |
IDirectory |
The directory to search. |
patterns |
IEnumerable<string> |
The globbing patterns and/or absolute paths. |
Return Value
Type |
Description |
IEnumerable<IFile> |
All files in the specified directory that match the globbing patterns and/or absolute paths.
|