Text File Uppercase Converter in C#

This program reads the content of a text file and converts all lowercase letters to uppercase. After processing the text, the program writes the modified content to another text file. The program will ensure that any lowercase letter in the source file will be transformed into its uppercase equivalent, while other characters (such as punctuation, numbers, or already uppercase letters) will remain unchanged.



Group

File Handling in C#

Objective

1. The user will input the name of the text file to read.
2. The program will read the entire content of the specified text file.
3. All lowercase letters will be converted to uppercase.
4. The modified content will be written to a new file, with the same name but appended with ".out".
5. Ensure proper handling of file reading and writing operations.

Write a program to read a text file and dump its content to another file, changing the lowercase letters to uppercase.

Example C# Exercise

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

class UppercaseConverter
{
    // Main method to execute the program
    static void Main(string[] args)
    {
        // Ask the user for the name of the input text file
        Console.WriteLine("Enter the name of the text file to read:");

        // Get the input file name
        string inputFileName = Console.ReadLine();

        // Generate the output file name (append ".out" to the original file name)
        string outputFileName = Path.ChangeExtension(inputFileName, ".out");

        try
        {
            // Read all the content of the input file
            string content = File.ReadAllText(inputFileName);

            // Convert all lowercase letters to uppercase
            string upperCaseContent = content.ToUpper();

            // Write the modified content to the new output file
            File.WriteAllText(outputFileName, upperCaseContent);

            // Inform the user that the process is complete
            Console.WriteLine("The file has been processed. The output is saved in: " + outputFileName);
        }
        catch (FileNotFoundException)
        {
            // Handle the case where the input file doesn't exist
            Console.WriteLine("Error: The specified file was not found.");
        }
        catch (Exception ex)
        {
            // Handle other unexpected errors
            Console.WriteLine("An error occurred: " + ex.Message);
        }
    }
}

 Output

//If the input file example.txt contains:
Hello, this is a test file with mixed CASE letters.

//The output file example.out will contain:
HELLO, THIS IS A TEST FILE WITH MIXED CASE LETTERS.

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 Uppercase and Save to New File in C#

    This program is designed to read a given text file, convert all lowercase letters to uppercase, and then save the modified content to a new file. The program will take an input fil...

  • Invert File Content and Save in Reverse Order in C#

    This program is designed to read a binary file and create a new file with the same name but with a ".inv" extension. The new file will contain the same bytes as the original file, ...

  • Text File Encryption Program in C#

    This program is designed to encrypt a text file and save the encrypted content into another text file. The encryption method used here is a simple character shifting technique, whe...

  • Word Count Program for Text File in C#

    This program is designed to read a text file and count the number of words it contains. A word is considered any sequence of characters separated by spaces, newlines, or punctuatio...

  • Display BMP File Width and Height using BinaryReader in C#

    This program is designed to read a BMP (Bitmap) image file and display its width and height. The BMP file format has a specific header structure, which contains important informati...

  • File Text to HTML Converter in C#

    This program is a "Text to HTML Converter" that reads the contents of a source text file and converts it into an HTML file. The program will take the text file and process its cont...