You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
547 B
C#

/*
* C# Program to List the Files in a Directory
*/
using System;
using System.IO;
class Program
{
static void Main()
{
string[] array1 = Directory.GetFiles(@"D:\");
Console.WriteLine("Files in the Directory");
foreach (string name in array1)
{
Console.WriteLine(name);
}
Console.Read();
}
}
/*
Files in the Directory
D:\demo1.cs
D:\demo1.exe
D:\msdia80.dll
D:\demo1.txt