Click here to Skip to main content
15,886,036 members
Articles / Programming Languages / C#

How to copy files in C# with a customizable progress indicator and or progress bar

Rate me:
Please Sign up or sign in to vote.
4.46/5 (30 votes)
22 May 2009CPOL 213.6K   14.1K   82   50
This article shows you how to construct a class to copy files and folder trees with an optional progress indicator.

Copy Files

Introduction

After reading about lots of ways to copy files with a progress indicator in C# and finding them all to be a little... long winded, I decided to write this article to help my fellow coders. It's a simple way to copy files and folders with a customizable progress bar/indicator.

Background

The class uses the Windows Kernal32 CopyFileEx function to do the copying of files. This being said, it does use one pointer, and so needs to be compiled with the /unsafe parameter (or simply tick the 'allow unsafe code' option in the project's properties)

You can create your own way to display the progress of the copy. To do this, simply implement the ICopyFileDiag interface and pass your class to the copy method.

C#
//The interface for the Dialog the CopyFiles class uses.
public interface ICopyFilesDiag
{
    //needed to sync the CopyClass update events with the dialog thread
    System.ComponentModel.ISynchronizeInvoke SynchronizationObject { get; set; }

    //This event should fire when you want to cancel the copy
    event CopyFiles.DEL_cancelCopy EN_cancelCopy;

    //This is how the CopyClass will send your dialog information about
    //the transfer
    void update(Int32 totalFiles, Int32 copiedFiles, Int64 totalBytes, 
                Int64 copiedBytes, String currentFilename);
    void Show();
    void Hide();
}

Using the code

The guts of the code is in the CopyFiles class; however, once this is referenced in your application, it's simply a case of specifying a list of files for a directory to copy and the location to copy it to.

You then choose to do the copy asynchronously or synchronously:

C#
private void But_CopyFiles_Click(object sender, EventArgs e)
{

    //This the list of random files we want 
    //to copy into a single new directory
    List<String> TempFiles = new List<String>();
    TempFiles.Add("C:\\Copy Test Folder\\test.txt");
    TempFiles.Add("C:\\Copy Test Folder\\Bob.txt");
    TempFiles.Add("C:\\Copy Test Folder\\Test4\\Bob.Trev.txt");
    TempFiles.Add("C:\\Copy Test Folder\\Test4\\test.txt");
    TempFiles.Add("C:\\Copy Test Folder\\Test3\\Bob.Trev.txt");
    TempFiles.Add("C:\\Copy Test Folder\\Test3\\test.txt");
    TempFiles.Add("C:\\Copy Test Folder\\Test3\\B.o.b.Trev..txt");
    TempFiles.Add("C:\\Copy Test Folder\\Test2\\Bob.Trev.txt");
    TempFiles.Add("C:\\Copy Test Folder\\Test2\\test.txt");
    TempFiles.Add("C:\\Copy Test Folder\\Test1\\test.txt");
    TempFiles.Add("C:\\Copy Test Folder\\Test1\\B.o.b.Trev..txt");
    TempFiles.Add("C:\\Copy Test Folder\\Test1\\Bob.Trev.txt");

    //I would recommend you put at least one large file in this folder
    //to see the progress bar in action.
    CopyFiles.CopyFiles Temp = new CopyFiles.CopyFiles(TempFiles, "C:\\Test");
    
    //Uncomment the next line to copy the file tree.
    //CopyFiles.CopyFiles Temp = 
    // new CopyFiles.CopyFiles("C:\\Copy Test Folder", "C:\\Test");

    //Create the default Copy Files Dialog window from our Copy Files assembly
    //and sync it with our main/current thread
    CopyFiles.DIA_CopyFiles TempDiag = new CopyFiles.DIA_CopyFiles();
    TempDiag.SynchronizationObject = this;

    //Copy the files anysncrinsuly
    Temp.CopyAsync(TempDiag);

    //Uncomment this line to do a synchronous copy.
    ///Temp.Copy();

}

This is an example of how the ICopyFileDiag can be implemented:

C#
public partial class DIA_CopyFiles : Form, ICopyFilesDiag
{
    // Properties
    public System.ComponentModel.ISynchronizeInvoke 
           SynchronizationObject { get; set; }
    // Constructors
    public DIA_CopyFiles()
    {
        InitializeComponent();
    }
    // Methods
    public void update(Int32 totalFiles, Int32 copiedFiles, 
           Int64 totalBytes, Int64 copiedBytes, String currentFilename)
    {
        Prog_TotalFiles.Maximum = totalFiles;
        Prog_TotalFiles.Value = copiedFiles;
        Prog_CurrentFile.Maximum = 100;
        if (totalBytes != 0)
        {
            Prog_CurrentFile.Value = Convert.ToInt32((100f / 
                  (totalBytes / 1024f)) * (copiedBytes / 1024f));
        }
        Lab_TotalFiles.Text = "Total files (" + copiedFiles + 
                  "/" + totalFiles + ")";
        Lab_CurrentFile.Text = currentFilename;
    }
    private void But_Cancel_Click(object sender, EventArgs e)
    {
        RaiseCancel();
    }
    private void DIA_CopyFiles_Closed(object sender, System.EventArgs e)
    {
        RaiseCancel();
    }
    private void RaiseCancel()
    {
        if (EN_cancelCopy != null)
        {
            EN_cancelCopy();
        }
    }
    //Events
    public event CopyFiles.DEL_cancelCopy EN_cancelCopy;
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralCool article! Pin
Abhinav S27-Mar-10 21:01
Abhinav S27-Mar-10 21:01 
QuestionVery helpful but I would like to copy an entire tree of files and folder. Pin
kakaomocha26-Mar-10 9:05
kakaomocha26-Mar-10 9:05 
AnswerRe: Very helpful but I would like to copy an entire tree of files and folder. Pin
Neil Cadman4-May-10 9:52
Neil Cadman4-May-10 9:52 
GeneralRe: Very helpful but I would like to copy an entire tree of files and folder. Pin
Neil Cadman4-May-10 10:02
Neil Cadman4-May-10 10:02 
GeneralRe: Very helpful but I would like to copy an entire tree of files and folder. Pin
nasermokkary17-May-10 23:40
nasermokkary17-May-10 23:40 
GeneralRe: Very helpful but I would like to copy an entire tree of files and folder. Pin
MacSpudster7-Jul-11 8:23
professionalMacSpudster7-Jul-11 8:23 
GeneralVery helpful! Pin
kolluti11-Mar-10 6:20
kolluti11-Mar-10 6:20 
GeneralMy vote of 1 Pin
kurtkc9-Mar-10 16:15
kurtkc9-Mar-10 16:15 
wla lng
QuestionTrouble with events EV_copyCanceled and EV_copyComplete Pin
jpangamarca18-Dec-09 6:06
jpangamarca18-Dec-09 6:06 
AnswerRe: Trouble with events EV_copyCanceled and EV_copyComplete Pin
Neil Cadman3-Jan-10 8:48
Neil Cadman3-Jan-10 8:48 
GeneralRe: Trouble with events EV_copyCanceled and EV_copyComplete Pin
Douglas Kirk20-Feb-10 7:33
Douglas Kirk20-Feb-10 7:33 
GeneralRe: Trouble with events EV_copyCanceled and EV_copyComplete Pin
Douglas Kirk20-Feb-10 8:14
Douglas Kirk20-Feb-10 8:14 
QuestionCopy Files Pin
pcsupport.ch14-Nov-09 21:21
pcsupport.ch14-Nov-09 21:21 
AnswerRe: Copy Files Pin
Neil Cadman3-Jan-10 8:35
Neil Cadman3-Jan-10 8:35 
QuestionDisplaying progress in synchronous mode Pin
zzzdeejay27-Oct-09 1:24
zzzdeejay27-Oct-09 1:24 
AnswerRe: Displaying progress in synchronous mode Pin
Neil Cadman3-Jan-10 8:33
Neil Cadman3-Jan-10 8:33 
QuestionCopy folder destination not working?? helpful resource BTW. [modified] Pin
Touch Sonic10-Aug-09 10:26
Touch Sonic10-Aug-09 10:26 
AnswerRe: Copy folder destination not working?? helpful resource BTW. Pin
Touch Sonic11-Aug-09 8:14
Touch Sonic11-Aug-09 8:14 
Generalif do not place in the harddisk, Pin
Burak Akku16-Jun-09 21:39
Burak Akku16-Jun-09 21:39 
Generalgood article Pin
Donsw13-Jun-09 7:16
Donsw13-Jun-09 7:16 
GeneralRe: good article Pin
Neil Cadman13-Jun-09 22:00
Neil Cadman13-Jun-09 22:00 
GeneralRe: good article Pin
Donsw14-Jun-09 4:52
Donsw14-Jun-09 4:52 
GeneralNice Article Pin
Four13 Designs29-May-09 17:32
Four13 Designs29-May-09 17:32 
AnswerRe: Nice Article Pin
Neil Cadman29-May-09 23:16
Neil Cadman29-May-09 23:16 
GeneralRe: Nice Article Pin
mash sundaraman29-Jun-09 11:39
mash sundaraman29-Jun-09 11:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.