Users Online

· Guests Online: 106

· Members Online: 0

· Total Members: 188
· Newest Member: meenachowdary055

Forum Threads

Newest Threads
No Threads created
Hottest Threads
No Threads created

Latest Articles

C# Program to List Files in Directory

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.

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

 

Comments

No Comments have been Posted.

Post Comment

Please Login to Post a Comment.

Ratings

Rating is available to Members only.

Please login or register to vote.

No Ratings have been Posted.
Render time: 0.92 seconds
10,863,256 unique visits