Program in C# to Display the Contents of a Text File

This program reads and displays the contents of a specified text file on the screen. The name of the file can either be provided as a command line argument or, if no argument is given, the program will prompt the user to enter the file name. The program uses a StreamReader to read the file and output its content to the console. If the file doesn't exist or an error occurs while opening it, the program will display an appropriate error message.



Group

File Handling in C#

Objective

1. Check if a command line argument is provided for the file name.
2. If no argument is present, prompt the user to enter the file name.
3. Use a StreamReader to read the file and display its contents.
4. Handle cases where the file does not exist or can't be read.

Create a program to display all the contents of a text file on screen (note: you must use a StreamReader). The name of the file will be entered in the command line or (if there is no command line present) asked to the user by the program.

Example C# Exercise

 Copy C# Code
using System;
using System.IO;

class Program
{
    static void Main(string[] args)
    {
        string fileName;

        // Check if the file name is provided as a command line argument
        if (args.Length > 0)
        {
            // Use the command line argument as the file name
            fileName = args[0];
        }
        else
        {
            // If no argument is provided, prompt the user to enter the file name
            Console.WriteLine("Enter the file name:");
            fileName = Console.ReadLine();
        }

        // Try to open and read the file using StreamReader
        try
        {
            // Create a StreamReader object to read the file
            using (StreamReader reader = new StreamReader(fileName))
            {
                string line;
                
                // Read the file line by line and display it on the screen
                while ((line = reader.ReadLine()) != null)
                {
                    Console.WriteLine(line);
                }
            }
        }
        catch (FileNotFoundException)
        {
            // Handle the case where the file is not found
            Console.WriteLine("Error: The file was not found.");
        }
        catch (IOException ex)
        {
            // Handle other potential IO errors
            Console.WriteLine($"Error reading the file: {ex.Message}");
        }
    }
}

 Output

// Output of the code (if the file "example.txt" contains the following lines):
This is the first line of the file.
Here is the second line.
And here is the third line.

Enter the file name:
example.txt
This is the first line of the file.
Here is the second line.
And here is the third line.

Share this C# Exercise

More C# Practice Exercises of File Handling 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#.

  • Convert Text to HTML and Dump to File in C#

    This program implements a class TextToHtml that can convert several user-entered lines of text into an HTML sequence. The program will have methods to add text to an array, display...

  • Logger Class to Append Text with Date and Time in C#

    This program creates a Logger class with a static method Write. The Write method appends a specified text message to a log file, including the current date and time before the mess...

  • Simulating Unix 'More' Command in C#

    Create a C# program that mimics the functionality of the Unix command more, which allows the user to view content from a text file one screen at a time. The program will display 24...

  • Word Replacement Program in C#

    This program is designed to replace all occurrences of a specific word in a text file and save the result into a new file. The user provides the original file, the word to search f...

  • Character Count Program from file in C#

    This program counts the number of times a specified character appears in a text file. The program can either ask the user for the file and the character to search or accept them as...

  • BMP Image File Validator in C#

    This program checks if a BMP image file seems to be correct by verifying its header. Specifically, it checks if the first two bytes of the file match the ASCII codes for the letter...