DirectoryInfo.EnumerateFiles Method ()
Returns an enumerable collection of file information in the current directory.
Assembly: mscorlib (in mscorlib.dll)
| Exception | Condition |
|---|---|
| DirectoryNotFoundException | The path encapsulated in the DirectoryInfo object is invalid (for example, it is on an unmapped drive). |
| SecurityException | The caller does not have the required permission. |
The EnumerateFiles and GetFiles methods differ as follows:
When you use EnumerateFiles, you can start enumerating the collection of FileInfo objects before the whole collection is returned.
When you use GetFiles, you must wait for the whole array of FileInfo objects to be returned before you can access the array.
Therefore, when you are working with many files and directories, EnumerateFiles can be more efficient.
This method pre-populates the values of the following FileInfo properties:
The returned collection is not cached; each call to the GetEnumerator method on the collection will start a new enumeration.
The following example enumerates the files under a specified directory and uses a LINQ query to return the names of all files that were created before 2009 by checking the value of the CreationTimeUtc property.
If you only need the names of the files, use the static Directory class for better performance. For an example, see the Directory.EnumerateFiles(String) method.
// Create a DirectoryInfo of the directory of the files to enumerate. DirectoryInfo DirInfo = new DirectoryInfo(@"\\archives1\library\"); DateTime StartOf2009 = new DateTime(2009, 01, 01); // LINQ query for all files created before 2009. var files = from f in DirInfo.EnumerateFiles() where f.CreationTimeUtc < StartOf2009 select f; // Show results. foreach (var f in files) { Console.WriteLine("{0}", f.Name); }
The following example shows how to enumerate files in a directory by using different search options. The example assumes a directory that has files named log1.txt, log2.txt, test1.txt, test2.txt, test3.txt, and a subdirectory that has a file named SubFile.txt.
using System; using System.IO; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { DirectoryInfo di = new DirectoryInfo(@"C:\ExampleDir"); Console.WriteLine("No search pattern returns:"); foreach (var fi in di.EnumerateFiles()) { Console.WriteLine(fi.Name); } Console.WriteLine(); Console.WriteLine("Search pattern *2* returns:"); foreach (var fi in di.EnumerateFiles("*2*")) { Console.WriteLine(fi.Name); } Console.WriteLine(); Console.WriteLine("Search pattern test?.txt returns:"); foreach (var fi in di.EnumerateFiles("test?.txt")) { Console.WriteLine(fi.Name); } Console.WriteLine(); Console.WriteLine("Search pattern AllDirectories returns:"); foreach (var fi in di.EnumerateFiles("*", SearchOption.AllDirectories)) { Console.WriteLine(fi.Name); } } } } /* This code produces output similar to the following: No search pattern returns: log1.txt log2.txt test1.txt test2.txt test3.txt Search pattern *2* returns: log2.txt test2.txt Search pattern test?.txt returns: test1.txt test2.txt test3.txt Search pattern AllDirectories returns: log1.txt log2.txt test1.txt test2.txt test3.txt SubFile.txt Press any key to continue . . . */
Available since 10
.NET Framework
Available since 4.0
Silverlight
Available since 4.0