Program in C# to Append Sentences to a Text File

This program prompts the user to input several sentences and stores them in a text file named "sentences.txt". If the file already exists, the new sentences will be appended to the end of the file instead of overwriting its content. The program continues asking for sentences until the user presses Enter without typing anything, at which point the data is saved to the file.



Group

File Handling in C#

Objective

1. Ask the user to input a sentence.
2. If the sentence is not empty, append it to the file "sentences.txt".
3. Continue prompting the user for sentences until they press Enter without typing anything.
4. After the input is finished, notify the user that the sentences have been saved to the file.

Create a program to ask the user for several sentences (until they just press Enter) and store them in a text file named "sentences.txt". If the file exists, the new content must be appended to its end.

Example C# Exercise

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

class Program
{
    static void Main()
    {
        // Define the path for the sentences file
        string filePath = "sentences.txt";

        // Open the file in append mode to add new sentences without overwriting the file
        using (StreamWriter writer = new StreamWriter(filePath, true)) // 'true' enables append mode
        {
            string sentence;
            
            // Loop until the user presses Enter without typing anything
            while (true)
            {
                // Prompt the user for a sentence
                Console.WriteLine("Enter a sentence (or press Enter to finish): ");
                sentence = Console.ReadLine();

                // If the input is empty, break out of the loop
                if (string.IsNullOrEmpty(sentence))
                {
                    break;
                }

                // Append the sentence to the file
                writer.WriteLine(sentence);
            }
        }

        // Notify the user that the sentences were successfully saved
        Console.WriteLine("Sentences have been saved to 'sentences.txt'.");
    }
}

 Output

//Code Output:
Enter a sentence (or press Enter to finish): I love coding.
Enter a sentence (or press Enter to finish): Programming is fun!
Enter a sentence (or press Enter to finish): 
Sentences have been saved to 'sentences.txt'.

//Contents of "sentences.txt" (after the program runs):
I love coding.
Programming is fun!

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

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

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