Copy Source File to Destination File Using FileStream in C#

This program copies a source file to a destination file using FileStream in C#. The file is read and written in blocks of 512 KB at a time to handle large files efficiently. The program will prompt the user for the source and destination file paths. It will check if the source file exists and handle any errors accordingly. If the destination file already exists, the program will warn the user without overwriting the file. The program handles potential file access issues, ensuring that the copying process is as robust as possible.



Group

File Handling in C#

Objective

1. Prompt the user for the source file path.
2. Prompt the user for the destination file path.
3. Check if the source file exists. If not, display an error message and terminate the program.
4. If the destination file already exists, warn the user and ask for confirmation before overwriting.
5. Open the source file using FileStream and the destination file in write mode.
6. Copy the content in blocks of 512 KB using a buffer.
7. Handle any errors during the file operation.
8. Confirm the successful completion of the file copy process.

Create a program to copy a source file to a destination file. You must use FileStream and a block size of 512 KB. An example usage might be:

mycopy file.txt e:\file2.txt


The program should handle cases where the source file does not exist, and it should warn the user (but not overwrite) if the destination file already exists.

Example C# Exercise

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

class FileCopy
{
    // Main method to execute the file copying
    static void Main(string[] args)
    {
        // Prompt the user to enter the source file path
        Console.WriteLine("Please enter the source file path:");
        string sourcePath = Console.ReadLine();

        // Prompt the user to enter the destination file path
        Console.WriteLine("Please enter the destination file path:");
        string destPath = Console.ReadLine();

        // Check if the source file exists
        if (!File.Exists(sourcePath))
        {
            Console.WriteLine("The source file does not exist.");
            return; // Exit the program if the source file does not exist
        }

        // Check if the destination file already exists
        if (File.Exists(destPath))
        {
            Console.WriteLine("The destination file already exists.");
            Console.WriteLine("Do you want to overwrite it? (Y/N)");

            // Ask the user for confirmation to overwrite the file
            string overwriteConfirmation = Console.ReadLine().ToUpper();
            if (overwriteConfirmation != "Y")
            {
                Console.WriteLine("Operation cancelled. The destination file was not overwritten.");
                return; // Exit the program if the user does not want to overwrite
            }
        }

        try
        {
            // Open the source file with FileStream in read mode
            using (FileStream sourceStream = new FileStream(sourcePath, FileMode.Open, FileAccess.Read))
            {
                // Open the destination file with FileStream in write mode
                using (FileStream destStream = new FileStream(destPath, FileMode.Create, FileAccess.Write))
                {
                    // Define a buffer size of 512 KB
                    byte[] buffer = new byte[512 * 1024];

                    int bytesRead;
                    // Read the source file and write to the destination file in blocks of 512 KB
                    while ((bytesRead = sourceStream.Read(buffer, 0, buffer.Length)) > 0)
                    {
                        // Write the read block of data to the destination file
                        destStream.Write(buffer, 0, bytesRead);
                    }
                }
            }

            // Inform the user that the file has been copied successfully
            Console.WriteLine("File copied successfully!");
        }
        catch (Exception ex)
        {
            // Handle any errors that occur during the file copy process
            Console.WriteLine("An error occurred during the file copy process: " + ex.Message);
        }
    }
}

 Output

//Assuming the user runs the program and inputs the following paths:
Please enter the source file path:
C:\path\to\source\file.txt
Please enter the destination file path:
D:\path\to\destination\file2.txt

//If the source file exists and the destination does not already exist, the program will output:
File copied successfully!

//If the destination file already exists, the program will prompt:
The destination file already exists.
Do you want to overwrite it? (Y/N)

//If the user chooses 'Y', the program will proceed to copy the file, and the following message will be displayed:
File copied successfully!

//If the user chooses 'N', the program will output:
Operation cancelled. The destination file was not overwritten.

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

  • Tag Reader for Audio Files in C#

    This program reads and extracts the ID3 version 1 tags from an audio file, specifically the last 128 bytes of the file, which contain metadata information such as the title, artist...

  • Simple C to C# Converter

    This program is designed to convert simple C programs into C# code. It takes a C program as input and translates it into a corresponding C# program that compiles and runs correctly...

  • File Splitter Program in C#

    This program allows you to split a file of any type into smaller pieces of a specified size. The program takes two parameters: the name of the file to split and the size (in bytes)...

  • BMP Image File 'Encrypt-Decrypt' Program in C#

    This program allows you to encrypt and decrypt BMP image files by manipulating the "BM" mark located in the first two bytes of the file. The program swaps the "BM" marker at the be...

  • CSV to Text Converter in C#

    This program reads a CSV file that contains four data blocks per line. The first three data blocks are textual (name, surname, and city), and the last one is numeric (age). It proc...

  • File Comparison Program in C#

    This C# program compares two files of any type (text, binary, etc.) to determine if they are identical. The program reads the content of both files and checks whether every byte in...