Display Files in the Current Folder in C#

In this exercise, you will create a C# program that retrieves and displays all files in the current folder. You will use the System.IO namespace, particularly the Directory.GetFiles method, to access the files in the folder. This exercise is designed to help you get familiar with file handling and directory manipulation in C#.



Group

Using Additional Libraries in C#

Objective

1. Use the System.IO namespace to access the directory functions.
2. Retrieve all files in the current directory using Directory.GetFiles.
3. Loop through the file paths and display them to the console.
4. Make sure the program displays each file in the folder, including the full file path.

Create a C# program that shows the files in the current folder.

Example C# Exercise

 Copy C# Code
using System;  // Importing the System namespace for basic functionalities
using System.IO;  // Importing the System.IO namespace for file and directory operations

class Program
{
    static void Main()
    {
        // Get the current directory path
        string currentDirectory = Directory.GetCurrentDirectory();
        
        // Retrieve all files in the current directory
        string[] files = Directory.GetFiles(currentDirectory);

        // Display the files to the console
        Console.WriteLine("Files in the current directory:");

        // Loop through each file and display it
        foreach (string file in files)
        {
            Console.WriteLine(file);  // Display the file path
        }

        // Wait for user input before closing the program
        Console.ReadKey();
    }
}

 Output

Files in the current directory:
C:\Users\YourUsername\Documents\example1.txt
C:\Users\YourUsername\Documents\example2.docx
C:\Users\YourUsername\Documents\image1.jpg

Share this C# Exercise

More C# Practice Exercises of Using Additional Libraries in C#

Explore our set of C# Practice Exercises! Specifically designed for beginners, these exercises will help you develop a solid understanding of the basics of C#. From variables and data types to control structures and simple functions, each exercise is crafted to challenge you incrementally as you build confidence in coding in C#.