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