Click here to Skip to main content
Licence 
First Posted 23 Jun 2005
Views 33,260
Bookmarked 16 times

.NET Directory Copy Program

By | 23 Jun 2005 | Article
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.

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

About the Author

Aryasheel

Web Developer

India India

Member

I am working as a software professional in YASH Technologies in hyderabad india.
I primarly Work in Pocket PC projects

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 Pinmemberyasser_abbasi0:50 12 Feb '10  
General:S PinmemberADakage22:27 31 Jan '09  
QuestionSHFileOperation? PinstaffNishant Sivakumar0:15 24 Jun '05  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 24 Jun 2005
Article Copyright 2005 by Aryasheel
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid