DirectoryEnumerateFiles Method (String, String) |
Returns an enumerable collection of file names that match a search pattern in a specified path.
Namespace: CMS.AmazonStorageAssembly: CMS.AmazonStorage (in CMS.AmazonStorage.dll) Version: 12.0.0
Syntax public override IEnumerable<string> EnumerateFiles(
string path,
string searchPattern
)
Parameters
- path
- Type: SystemString
The relative or absolute path to the directory to search. This string is not case-sensitive. - searchPattern
- Type: SystemString
Search pattern.
Return Value
Type:
IEnumerableStringAn enumerable collection of the full names (including paths) for the files in the directory specified by
path and that match the specified search pattern.
See Also