jQuery and ASP.NET

June 15, 2010

7 New methods to Enumerate Directory and Files in .NET 4.0




.NET 4.0 introduces 7 new methods to Enumerate directories and files. All these methods return Enumerable Collections (IEnumerable<T>), which perform better than arrays.

Here are the 7 new methods:

Directory.EnumerateDirectories - Returns an enumerable collection of directory names in a specified path

DirectoryInfo.EnumerateDirectories - Returns an enumerable collection of directory information in the current directory

Directory.EnumerateFiles - Returns an enumerable collection of file names in a specified path

DirectoryInfo.EnumerateFiles - Returns an enumerable collection of file information in the current directory

Directory.EnumerateFileSystemEntries - Returns an enumerable collection of file-system entries in a specified path

DirectoryInfo.EnumerateFileSystemInfos - Returns an enumerable collection of file system information in the current directory

File.ReadLines - Reads the lines of a file

In my upcoming posts, I will show you how to use these new methods.



'Like' us on our FaceBook page if you find this blog useful. Thanks!


Did you like this post?
kick it on DotNetKicks.com Save on Delicious
subscribe via rss subscribe via e-mail
print this post follow me on twitter


About The Author

Suprotim Agarwal, ASP.NET Architecture MVP works as an Architect Consultant and provides consultancy on how to design and develop Web applications.

Suprotim is also the founder and primary contributor to DevCurry, DotNetCurry and SQLServerCurry. He has also written an EBook 51 Recipes using jQuery with ASP.NET Controls.

Follow him on twitter @suprotimagarwal

comments

1 Response to "7 New methods to Enumerate Directory and Files in .NET 4.0"
  1. Anonymous said...
    July 29, 2010 6:51 AM

    Hi,

    Is there any method that returns list of files from a directory for a given date range (i.e. start date - end date)

 

Copyright © 2009-2011 All Rights Reserved for DevCurry.com by Suprotim Agarwal | Terms and Conditions