Directory.EnumerateFileSystemEntries Method (String, String, SearchOption)
Updated: July 2010
Returns an enumerable collection of file names and directory names that match a search pattern in a specified path, and optionally searches subdirectories.
Assembly: mscorlib (in mscorlib.dll)
public static IEnumerable<string> EnumerateFileSystemEntries( string path, string searchPattern, SearchOption searchOption )
Parameters
- path
- Type: System.String
The directory to search.
- searchPattern
- Type: System.String
The search string to match against the names of directories in path.
- searchOption
- Type: System.IO.SearchOption
One of the values of the SearchOption enumeration that specifies whether the search operation should include only the current directory or should include all subdirectories.
The default value is TopDirectoryOnly.
Return Value
Type: System.Collections.Generic.IEnumerable<String>An enumerable collection of file-system entries in the directory specified by path and that match searchPattern and searchOption.
| Exception | Condition |
|---|---|
| ArgumentException |
path is a zero-length string, contains only white space, or contains invalid characters as defined by GetInvalidPathChars. - or - searchPattern does not contain a valid pattern. |
| ArgumentNullException |
path is null. -or- searchPattern is null. |
| ArgumentOutOfRangeException |
searchOption is not a valid SearchOption value. |
| DirectoryNotFoundException |
path is invalid, such as referring to an unmapped drive. |
| IOException |
path is a file name. |
| PathTooLongException |
The specified path, file name, or combined exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters. |
| SecurityException |
The caller does not have the required permission. |
| UnauthorizedAccessException |
The caller does not have the required permission. |
The following wildcard specifiers are permitted in the searchPattern parameter.
|
Wildcard character |
Description |
|---|---|
|
* |
Zero or more characters. |
|
? |
Exactly one character. |
You can specify relative path information with the path parameter. Relative path information is interpreted as relative to the current working directory, which you can determine by using the GetCurrentDirectory method.
The EnumerateFileSystemEntries and GetFileSystemEntries methods differ as follows: When you use EnumerateFileSystemEntries, you can start enumerating the collection of entries before the whole collection is returned; when you use GetFileSystemEntries, you must wait for the whole array of entries to be returned before you can access the array. Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
The returned collection is not cached; each call to the GetEnumerator on the collection will start a new enumeration.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.