Showing posts with label C# File Directory List. Show all posts
Showing posts with label C# File Directory List. Show all posts

Wednesday, August 5, 2009

How to Listing Files in a Directory with C#

DirectoryInfo dirInfo = new DirectoryInfo(ryanDataPath + "\\RyansData");
FileInfo[] latestFile = dirInfo.GetFiles("*.csv");

Here latestFile have all the files with .csv extension within RyansData folder