DCSIMG
Search The File System Using LINQ - Maor's Blog

Search The File System Using LINQ

Do you want to search a file or file type in the file system? Nice way to do it is using LINQ.

var files = from file in new DirectoryInfo(@"D:\temp").GetFiles()
            where file.Name == "MyFile.txt"
            select file;

Or even search after specific file extension :

var files = from file in new DirectoryInfo(@"D:\temp").GetFiles()
            where file.Extension == ".txt"
            select file; 

Enjoy,

Maor

Published 20 May 2008 05:07 PM by Maor David-Pur

Comments

No Comments

Leave a Comment

(required) 
(required) 
(optional)
(required) 

Enter the numbers above:

Search

Go

This Blog

News

    RSS

     

    Connect with Me

    Maor's Facebook profile  Follow Maor on Twitter  Maor's profile on Linkedin  Maor in FriendFeed 
           

Syndication