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 message. This is useful for tracking events and actions in an application, as the log file will contain a timestamp for each entry. The file used for logging is specified by the user, and the log entries are appended to ensure that previous logs are not overwritten.



Group

File Handling in C#

Objective

1. Implement a Logger class with a static Write method.
2. The Write method should accept two parameters: the file name and the text to log.
3. The method must prepend the current date and time before the text.
4. Use AppendText to ensure the text is appended to the log file without overwriting existing content.
5. Use DateTime.Now to get the current date and time.
6. Test the functionality by calling Write to log different messages.

Create a class Logger, with a static method Write, which will append a certain text to a file: Logger.Write("myLog.txt", "This text is being logged"). It must also include the current date and time before the text (in the same line), so that the log file is easier to analyze.

Example C# Exercise

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

class Logger
{
    // Static method to write a log entry to a file
    public static void Write(string fileName, string message)
    {
        // Get the current date and time
        string dateTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");

        // Open the file and append the message with the current date and time
        try
        {
            // Use StreamWriter with AppendText to ensure text is added to the end of the file
            using (StreamWriter writer = File.AppendText(fileName))
            {
                // Write the date, time, and message to the file
                writer.WriteLine($"{dateTime} - {message}");
            }
            Console.WriteLine("Log entry added successfully.");
        }
        catch (Exception ex)
        {
            // Handle any errors that might occur when writing to the file
            Console.WriteLine("Error writing to log file: " + ex.Message);
        }
    }
}

class Program
{
    static void Main()
    {
        // Test the Logger class by writing some log entries
        Logger.Write("myLog.txt", "This text is being logged");
        Logger.Write("myLog.txt", "Another log entry");
        Logger.Write("myLog.txt", "Logging completed successfully");

        // Display a message indicating that logs have been written
        Console.WriteLine("Check 'myLog.txt' for the log entries.");
    }
}

 Output

//Expected output of the code:
Log entry added successfully.
Log entry added successfully.
Log entry added successfully.
Check 'myLog.txt' for the log entries.

//Contents of myLog.txt:
2025-04-02 12:45:30 - This text is being logged
2025-04-02 12:45:30 - Another log entry
2025-04-02 12:45:30 - Logging completed successfully

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

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

  • Store and Read Personal Data in a Binary File in C#

    This program asks the user for their name, age (as a byte), and birth year (as an int). The data is then stored in a binary file. The program will also include a reader to test tha...

  • Basic C# to Java Source Code Coverter

    This program is designed to translate a simple C# source file into an equivalent Java source file. It will take a C# file as input, and generate a Java file by making common langua...