C# Program to List Files in Directory

This is a C# Program to list the files in a directory.

Problem Description

This C# Program Lists the Files in a Directory.

Problem Solution

Here files in the directory are displayed using directory.getfiles().

Program/Source Code

Here is source code of the C# Program to List the Files in a Directory. The C# program is ,successfully compiled and executed with Microsoft Visual Studio. The program output is also shown below.

/*
 * 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();
    }
}
Program Explanation

This C# program is used to list the files in a directory. The files in the directory are printed using directory.getfiles(). Using foreach loop is used to print the list of files in a directory.

advertisement
advertisement
Runtime Test Cases
 
Files in the Directory
D:\demo1.cs
D:\demo1.exe
D:\msdia80.dll
D:\demo1.txt

Sanfoundry Global Education & Learning Series – 1000 C# Programs.

If you wish to look at all C# Programming examples, go to 1000 C# Programs.

If you find any mistake above, kindly email to [email protected]

advertisement
advertisement
Subscribe to our Newsletters (Subject-wise). Participate in the Sanfoundry Certification contest to get free Certificate of Merit. Join our social networks below and stay updated with latest contests, videos, internships and jobs!

Youtube | Telegram | LinkedIn | Instagram | Facebook | Twitter | Pinterest
Manish Bhojasia - Founder & CTO at Sanfoundry
Manish Bhojasia, a technology veteran with 20+ years @ Cisco & Wipro, is Founder and CTO at Sanfoundry. He lives in Bangalore, and focuses on development of Linux Kernel, SAN Technologies, Advanced C, Data Structures & Alogrithms. Stay connected with him at LinkedIn.

Subscribe to his free Masterclasses at Youtube & discussions at Telegram SanfoundryClasses.