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