Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here i know the source folder path.But i want to search a particular folder like "MANAGERS" in the list of directories for files.Could we do this type of operation in C# Windows Application?Please help me regarding this.

share|improve this question

1 Answer

You can use the DirectoryInfo class.

DirectoryInfo di = new DirectoryInfo(mySourceFolder);
DirectoryInfo[] diArr = di.GetDirectories();

foreach (DirectoryInfo dri in diArr)
{
    if(dri.Name.ToUpperInvariant() == "MANAGERS")
    {
        FileInfo[] fiArr = di.GetFiles(); // get a list of files in directory
    }
}
share|improve this answer
But here i dont know where the "MANAGER" folder is ? – Jai Ganesh Nov 18 '10 at 11:42
@programmer4programming - If you don't know where a folder is, how do you expect to search it? – Oded Nov 18 '10 at 11:44
Only i know the Folder Name – Jai Ganesh Nov 18 '10 at 11:48
@programmer4programming - what folder name? Where is the "MANAGERS" folder supposed to be then? See my updated answer. I am guessing at what you need, however. – Oded Nov 18 '10 at 11:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.