System.IO.Directory.EnumerateFileSystemEntries Method

Returns an enumerable collection of file names and directory names in a specified path.

Syntax

public static IEnumerable<string> EnumerateFileSystemEntries (string path)

Parameters

path
The relative or absolute path to the directory to search. This string is not case-sensitive.

Returns

An enumerable collection of file-system entries in the directory specified by path.

Remarks

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 Directory.GetCurrentDirectory method.

The erload:System.IO.Directory.EnumerateFileSystemEntries and erload:System.IO.Directory.GetFileSystemEntries methods differ as follows: When you use erload:System.IO.Directory.EnumerateFileSystemEntries, you can start enumerating the collection of entries before the whole collection is returned; when you use erload:System.IO.Directory.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, erload:System.IO.Directory.EnumerateFiles can be more efficient.

The returned collection is not cached; each call to the IEnumerable`1.GetEnumerator on the collection will start a new enumeration.

Requirements

Namespace: System.IO
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 4.0.0.0