An enumerable collection of the full names (including paths) for the files in the directory specified by path.
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.EnumerateFiles and erload:System.IO.Directory.GetFiles methods differ as follows: When you use erload:System.IO.Directory.EnumerateFiles, you can start enumerating the collection of names before the whole collection is returned; when you use erload:System.IO.Directory.GetFiles, you must wait for the whole array of names 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.