Jun 30, 2011 - 690 days ago
Senthil Kumar
Visited 505 times , 3 Visits today
How to retreive the list of files from Directory in C# ?
Here’s a simple example that gets all the file names from a given directory .
The Directory class defined in the System.IO namespace provides the static GetFiles method that retreives all the file names with the complete path in the directory .
The below will retreive all the files names along with its complete path from C:\temp
private void Form1_Load(object sender, EventArgs e)
{
string[] lstFiles = Directory.GetFiles(@"c:\temp");
foreach (string file in lstFiles)
{
listBox1.Items.Add(file);
}
}
It is also possible to filter and select only the files with a
particular extension .
For example , if i want to search for all exe files with in the folder
, i can use the filter as stated below .
private void Form1_Load(object sender, EventArgs e)
{
string[] lstFiles = Directory.GetFiles(@"c:\temp","*.exe");
foreach (string file in lstFiles)
{
listBox1.Items.Add(file);
}
}
The above examples doesnot search the sub directories , to include the sub directories , we can pass the third parameter of type enum “SearchOption.AllDirectories” .


1 comment
How to retreive the list of files from Directory in C# | ProgramInDotnet
[...] How to retreive the list of files from Directory in C. [...]
Aug 8, 2011