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 lines of text at a time, truncating each line to 79 characters. After displaying 24 lines, the program will prompt the user to press Enter to continue. This process will repeat until all lines in the file are shown. The program should manage file reading and screen display logic while ensuring a smooth user interaction, similar to the command-line behavior.



Group

File Handling in C#

Objective

1. Create a program that reads the contents of a text file.
2. Display the content in 24-line chunks, truncating each line to 79 characters.
3. After displaying each chunk, prompt the user to press Enter to proceed.
4. Continue until all lines from the file are displayed.
5. Ensure the program stops once the entire file has been displayed.

Create a C# program which behaves like the Unix command "more": it must display the contents of a text file, and ask the user to press Enter each time the screen is full. As a simple approach, you can display the lines truncated to 79 characters, and stop after each 24 lines.

Example C# Exercise

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

class MoreCommandSimulation
{
    static void Main(string[] args)
    {
        // Prompt user to enter the filename
        Console.Write("Enter the filename: ");
        string filename = Console.ReadLine();

        // Check if the file exists
        if (File.Exists(filename))
        {
            // Open the file to read its contents
            string[] lines = File.ReadAllLines(filename);
            int linesPerPage = 24;  // Number of lines to display at once
            int maxLineLength = 79;  // Maximum line length to display

            // Display lines in chunks of 24
            for (int i = 0; i < lines.Length; i += linesPerPage)
            {
                // Display up to 24 lines, truncated to maxLineLength
                for (int j = i; j < i + linesPerPage && j < lines.Length; j++)
                {
                    Console.WriteLine(lines[j].Length > maxLineLength ? lines[j].Substring(0, maxLineLength) : lines[j]);
                }

                // If there are more lines to display, ask user to continue
                if (i + linesPerPage < lines.Length)
                {
                    Console.WriteLine("\nPress Enter to continue...");
                    Console.ReadLine();  // Wait for user input to continue
                }
            }
        }
        else
        {
            // If the file doesn't exist, inform the user
            Console.WriteLine("The file does not exist.");
        }
    }
}

 Output

Enter the filename: sample.txt
This is a sample text line that will be truncated if it exceeds 79 characters in length.
Another example of text being displayed here, still within the limits of the screen size.
...
Press Enter to continue...
This is the 25th line of text.
Another line is displayed here after the user presses Enter.
...
Press Enter to continue...
The file has ended.

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

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

  • Reverse the Contents of a Text File in C#

    This program takes a text file as input and creates a new file with the same name, but with a ".tnv" extension. The new file will contain the same lines as the original file, but i...