File Explorer with Navigation in C#

In this exercise, you will create a C# program that displays the files and folders in the current directory. The user can navigate through the list by moving up and down. When the user presses Enter on a folder name, they will enter that folder and see the contents inside. If they press Enter on a file, the file will be opened.

The program should implement basic file and folder navigation and allow users to explore the directory structure. It should dynamically update the displayed list as the user moves between folders. This is an important exercise for practicing file and directory manipulation in C#.



Group

Using Additional Libraries in C#

Objective

1. Use the Directory.GetFiles() and Directory.GetDirectories() methods to list the contents of the current folder.
2. Display the folder and file names on the console.
3. Allow the user to navigate up and down the list of files and folders.
4. If the user presses Enter on a folder, enter that folder and display its contents.
5. If the user presses Enter on a file, open it (if it's a text file, display its contents; otherwise, show an appropriate message).
6. Handle navigation properly when reaching the top or bottom of the list.
7. Display the folder path at the top to indicate the current folder.

Create a program that displays the files in the current folder and allows the user to move up and down the list. If the user presses Enter on a folder name, they will enter that folder. If they press Enter on a file, the file will be opened.

Example C# Exercise

 Copy C# Code
using System;  // For general system functions
using System.IO;  // For file and directory handling
using System.Linq;  // For LINQ to sort the directory entries

class Program
{
    static void Main()
    {
        string currentDirectory = Directory.GetCurrentDirectory();  // Get the current directory
        string[] fileEntries;
        string[] dirEntries;
        int selectedIndex = 0;  // Tracks the user's selection

        // Loop for navigating through the files and folders
        while (true)
        {
            // Get directories and files in the current directory
            dirEntries = Directory.GetDirectories(currentDirectory);
            fileEntries = Directory.GetFiles(currentDirectory);

            // Combine and sort both directories and files
            var entries = dirEntries.Concat(fileEntries).ToArray();

            // Clear the console and display the current directory
            Console.Clear();
            Console.WriteLine($"Current Directory: {currentDirectory}");

            // Display the list of directories and files
            for (int i = 0; i < entries.Length; i++)
            {
                // Highlight the selected item
                if (i == selectedIndex)
                {
                    Console.BackgroundColor = ConsoleColor.Blue;
                    Console.ForegroundColor = ConsoleColor.White;
                }
                else
                {
                    Console.BackgroundColor = ConsoleColor.Black;
                    Console.ForegroundColor = ConsoleColor.White;
                }

                Console.WriteLine(entries[i]);
                Console.ResetColor();
            }

            // Wait for user input to navigate or select
            var key = Console.ReadKey(true).Key;

            if (key == ConsoleKey.UpArrow && selectedIndex > 0)
            {
                selectedIndex--;  // Move up the list
            }
            else if (key == ConsoleKey.DownArrow && selectedIndex < entries.Length - 1)
            {
                selectedIndex++;  // Move down the list
            }
            else if (key == ConsoleKey.Enter)
            {
                string selectedPath = entries[selectedIndex];

                // If the selected entry is a directory, enter it
                if (Directory.Exists(selectedPath))
                {
                    currentDirectory = selectedPath;  // Change to the selected folder
                }
                // If it's a file, open it
                else if (File.Exists(selectedPath))
                {
                    Console.Clear();
                    Console.WriteLine($"Opening file: {selectedPath}");
                    string fileContent = File.ReadAllText(selectedPath);
                    Console.WriteLine(fileContent);  // Display file content
                    Console.ReadKey();  // Wait for user to press a key before returning to the file list
                }
            }
            else if (key == ConsoleKey.Escape)  // Exit the program on Escape key
            {
                break;
            }
        }
    }
}

 Output

//Output Example:
Current Directory: C:\Users\Example\Documents

C:\Users\Example\Documents\Folder1
C:\Users\Example\Documents\Folder2
C:\Users\Example\Documents\File1.txt
C:\Users\Example\Documents\File2.txt

//After selecting a folder and pressing Enter:
Current Directory: C:\Users\Example\Documents\Folder1

C:\Users\Example\Documents\Folder1\Subfolder1
C:\Users\Example\Documents\Folder1\File3.txt

//After selecting a file and pressing Enter:
Opening file: C:\Users\Example\Documents\File1.txt

This is the content of File1.

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#.

  • Search Files by Name in Folder and Subfolders in C#

    In this exercise, you will create a program that stores the names of files located in a specific folder and its subfolders. The program will then prompt the user to enter a search ...

  • Display Current Date and Time in C#

    In this exercise, you will create a program that displays the current date and time in a specific format. The format should be as follows: "Today is 6 of February of 2015. It's 03:...

  • 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.GetFile...

  • Display Executable Files in Current Folder in C#

    In this exercise, you will create a C# program that retrieves and displays the names of all executable files in the current folder. The program will search for files with specific ...

  • Display Current Time in Top-Right Corner in C#

    In this exercise, you will create a C# program that displays the current time in the top-right corner of the console screen. The program will update the time every second, showing ...

  • Generate a Sitemap from HTML Files in C#

    In this exercise, you will create a C# program that generates a preliminary "sitemap" file from the list of .html files in the current folder. The program will display the sitemap ...