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

Function to copy a directory to another place (nothing fancy)

Rate me:
Please Sign up or sign in to vote.
4.42/5 (49 votes)
19 Nov 20021 min read 406.8K   2.7K   61   55
Simple C#/.NET tip to copy an entire directory tree to another directory

Introduction

I have been working with the .NET framework for several weeks now and I really enjoy the API. But sometimes I miss some features I need right now, even if I expect the framework to grow and get new classes and capabilities in the forthcoming versions (like Java did).

This article doesn't try to teach something but just gives a solution to anyone who needs it. I tried to keep it simple with few lines of code.

The FileSystem class

This class includes high level functions missing in the standard System.IO namespace. The class provided here only includes a directory to directory copy function for the moment, and the purpose of this article is to fix this .NET missing feature that many VB developers (for example) are used to.

The function takes two absolute paths (source directory and destination directory) as parameters and returns a boolean equal to true when the copy succeeds. Please note that this function automatically overwrites a destination file with the same name. Of course all subdirectories are also copied recursively.

C#
using System;
using System.IO;

namespace Utility.IO{
    /// <summary>
    /// Filesystem
    /// </summary>
    public class FileSystem{
        // Copy directory structure recursively
        public static void copyDirectory(string Src,string Dst){
            String[] Files;

            if(Dst[Dst.Length-1]!=Path.DirectorySeparatorChar) 
                Dst+=Path.DirectorySeparatorChar;
            if(!Directory.Exists(Dst)) Directory.CreateDirectory(Dst);
            Files=Directory.GetFileSystemEntries(Src);
            foreach(string Element in Files){
                // Sub directories
                if(Directory.Exists(Element)) 
                    copyDirectory(Element,Dst+Path.GetFileName(Element));
                // Files in directory
                else 
                    File.Copy(Element,Dst+Path.GetFileName(Element),true);
                }
            }

        }
    }

An usage example

Here is an example of how to use the FileSystem class.

C#
// After a successful copy, you can then call 
// Directory.Delete(@"c:\MySrcDirectory") to mimic a Directory.Move behaviour
try{
    copyDirectory(@"c:\MySrcDirectory",@"c:\MyDstDirectory");
    }
catch(Exception Ex){
    Console.Error.WriteLine(Ex.Message);
    }

Conclusion

This article is just a tip targeted to beginners or newcomers who noticed this missing feature in the .NET framework. It is provided as a possible solution, but I encourage anyone to write his own function.

Happy Coding !!!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior) Siliconz Ltd
New Zealand New Zealand
Richard Lopes
Just Programmer

Comments and Discussions

 
GeneralVB.NET Version Pin
starlogic8-Feb-04 13:56
starlogic8-Feb-04 13:56 
GeneralRe: VB.NET Version Pin
korcutt27-Apr-06 11:28
korcutt27-Apr-06 11:28 
QuestionHow to determine drive types Pin
Hing17-Nov-03 19:36
Hing17-Nov-03 19:36 
AnswerRe: How to determine drive types Pin
chinese_zmm24-Mar-09 23:18
chinese_zmm24-Mar-09 23:18 
AnswerRe: How to determine drive types Pin
FrozenHearted25-Mar-09 23:34
FrozenHearted25-Mar-09 23:34 
QuestionWhy this way? Pin
Mustafa Demirhan19-Nov-02 15:54
Mustafa Demirhan19-Nov-02 15:54 
AnswerRe: Why this way? Pin
GriffonRL19-Nov-02 21:35
GriffonRL19-Nov-02 21:35 
GeneralRe: Why this way? Pin
Mustafa Demirhan20-Nov-02 0:18
Mustafa Demirhan20-Nov-02 0:18 
Thanks for the answer.

GriffonRL wrote:
Great question because I saw someone showing this solution in a newsgroup .

Hehe. Believe me this is my own question. I did not see it in a newsgroup Roll eyes | :rolleyes:
I have been using my approach for years and never had a problem yet.

GriffonRL wrote:
- Your code is not 100% .NET compliant.
- Your code is not portable to another framework version (like mono on Linux) because you rely on Windows commands.


Yeah you are right. I never thought that because framework compatibility or OS independency is never an issue for me. I do not care about that :P

GriffonRL wrote:
- No exceptions will be raised in case of an error occurring during the shell copy.

Yes but you will get a return value which indicates if the operation is sucessfull or not. Isn't it good enough? Hmmm. Well in fact not. I admit that C# is a very very nice language and the one who uses C# should use it in C# way, not the old C way. So let me answer my question: NO. Using Exceptions is better. Unsure | :~
Hey, but you can check the value and raise your own exception OMG | :OMG:

GriffonRL wrote:
- You start a new external process.

I really didn't know that. Are you sure about that? Confused | :confused:

PS: One nice thing with using Shell functions is that you can put the files directly to the Recycle Bin (instead of deleting them).

Lastly, let me ask you another question: How is your experience with .NET till now? Is it really more productive than VC++? I love C#; but I do not like the .NET Framework it self and I hate the CLR (or whatever it is, the intermediate compiler thing - the code is not compiled into the native code).
I hope someday, Microsoft will come up with a native C# compiler with a new version of MFC (I dont want any language interoperability. All I want is to use a language like C# not C++ Wink | ;) ).

Mustafa Demirhan
http://www.macroangel.com
Sonork ID 100.9935:zoltrix

<nobr>They say I'm lazy but it takes all my time
GeneralRe: Why this way? Pin
GriffonRL20-Nov-02 1:24
GriffonRL20-Nov-02 1:24 
GeneralRe: Why this way? Pin
BarryJ21-Nov-02 5:09
BarryJ21-Nov-02 5:09 
GeneralRe: Why this way? Pin
GriffonRL21-Nov-02 5:45
GriffonRL21-Nov-02 5:45 
GeneralGreat article... Pin
David Stone19-Nov-02 5:13
sitebuilderDavid Stone19-Nov-02 5:13 
GeneralRe: Great article... Pin
GriffonRL19-Nov-02 5:42
GriffonRL19-Nov-02 5:42 
GeneralRe: Great article... Pin
David Stone19-Nov-02 15:32
sitebuilderDavid Stone19-Nov-02 15:32 
GeneralRe: Great article... Pin
Mustafa Demirhan19-Nov-02 15:51
Mustafa Demirhan19-Nov-02 15:51 
GeneralRe: Great article... Pin
GriffonRL19-Nov-02 21:21
GriffonRL19-Nov-02 21:21 
GeneralRe: Great article... Pin
David Stone20-Nov-02 11:08
sitebuilderDavid Stone20-Nov-02 11:08 
GeneralRe: Great article... Pin
Anonymous20-Nov-02 21:42
Anonymous20-Nov-02 21:42 
GeneralRe: Great article... Pin
David Stone21-Nov-02 13:32
sitebuilderDavid Stone21-Nov-02 13:32 
GeneralRe: Great article... Pin
jalbitz12-Nov-03 8:11
jalbitz12-Nov-03 8:11 

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.