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

.NET Directory Copy Program

Rate me:
Please Sign up or sign in to vote.
1.56/5 (7 votes)
23 Jun 2005 44.7K   605   16   3
The article fills in the gap for the .NET framework to copy directory contents.

Introduction

This article submitted is my first posting in CodeProject. The code given along side is for the use of copying all the contents of a folder and if needed it can also again try to copy it some where else if the process failed.

Background

The Microsoft .NET framework does not provide for the functionality to copy a directory. This article and the code attached with it solves the particular problem.

Using the code

The heart of all is this function neatly searches the directory and the files and then copies them to a new directory after the definition table is created.

C#
public void DirectorySearch(string strSourceDirectory, 
             string strSourceDirectoryConstant, 
             string strDestinationDirectory)
{
    iNoOfDir++;
    string [] strarrDirectoryNames= Directory.GetDirectories(strSourceDirectory);
    string [] strarrFileNames= Directory.GetFiles(strSourceDirectory);
    foreach(string strFileName in strarrFileNames)
    {
        try
        {
            iNoOfFiles++;
            FileInfo info=new FileInfo(strFileName);
            long fileLength= info.Length;
            totalLength =totalLength+fileLength;
            //Below the function Insert is used which 
            //is found in the code : purpose to store the data
            Insert("FILE", strFileName, strSourceDirectoryConstant + @"\" + 
                   info.Name, fileLength.ToString(), strDestinationDirectory);
            info=null;
        }
        catch
        {
        }
    }
    foreach(string strDirectoryName in strarrDirectoryNames)
    {
        DirectoryInfo info=new DirectoryInfo(strDirectoryName);
        DirectorySearch(strDirectoryName, strSourceDirectoryConstant 
                        + @"\" + info.Name, strDestinationDirectory);
        Insert("DIRECTORY", strDirectoryName, strSourceDirectoryConstant 
               + @"\" + info.Name, "", strDestinationDirectory);
        info=null;
    }
}

History

  • Version 1.0 - 5:19 PM 6/20/2005.

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
Web Developer
India India
I am working as a software professional in YASH Technologies in hyderabad india.
I primarly Work in Pocket PC projects

Comments and Discussions

 
GeneralMy vote of 1 Pin
yasser_abbasi12-Feb-10 0:50
yasser_abbasi12-Feb-10 0:50 
General:S Pin
ADakage31-Jan-09 22:27
ADakage31-Jan-09 22:27 
QuestionSHFileOperation? Pin
Nish Nishant24-Jun-05 0:15
sitebuilderNish Nishant24-Jun-05 0:15 

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.