c# get all files excel in folder code example
Example: how to get all excel files from a folder in c#
using System;
using System.IO;
namespace FileOperationsSample
{
class Program
{
static void Main(string[] args)
{
string path = "C:\\Junk";
DirectoryInfo dir = new DirectoryInfo(path);
Console.WriteLine("File Name Size Creation Date and Time");
Console.WriteLine("=================================================================");
foreach (FileInfo flInfo in dir.GetFiles())
{
String name = flInfo.Name;
long size = flInfo.Length;
DateTime creationTime = flInfo.CreationTime;
Console.WriteLine("{0, -30:g} {1,-12:N0} {2} ", name, size, creationTime);
}
Console.ReadLine();
}
}
}