Click here to Skip to main content
15,881,715 members
Articles / Programming Languages / C#
Tip/Trick

Recursively Copy folder contents to another in C#

Rate me:
Please Sign up or sign in to vote.
4.43/5 (5 votes)
6 Nov 2011CPOL 51.8K   13   4
How to recursively copy folder contents to another in C#.
C#
private bool CopyFolderContents(string SourcePath, string DestinationPath)
{
   SourcePath = SourcePath.EndsWith(@"\") ? SourcePath : SourcePath + @"\";
   DestinationPath = DestinationPath.EndsWith(@"\") ? DestinationPath : DestinationPath + @"\";
 
   try
   {
      if (Directory.Exists(SourcePath))
      {
         if (Directory.Exists(DestinationPath) == false)
         {
            Directory.CreateDirectory(DestinationPath);
         }

         foreach (string files in Directory.GetFiles(SourcePath))
         {
            FileInfo fileInfo = new FileInfo(files);
            fileInfo.CopyTo(string.Format(@"{0}\{1}", DestinationPath, fileInfo.Name), true);
         }

         foreach (string drs in Directory.GetDirectories(SourcePath))
         {
            DirectoryInfo directoryInfo = new DirectoryInfo(drs);
            if (CopyFolderContents(drs, DestinationPath + directoryInfo.Name) == false)
            {
               return false;
            }
         }
      }
      return true;
   }
   catch (Exception ex)
   {
      return false;
   }
}

License

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


Written By
Web Developer
India India
Software developer by profession, working for a service and product based organisation in India.

Career graph:
Software Programmer since 2002.
Web Developer in ASP.NET since 2004.

Interests:
I love reading the blogs and articles of technology experts. I love codeproject and stackoverflow .

I love to share knowledge and help the programmers. I appreciate if some body corrects my code or my concepts which helps me learn.

Comments and Discussions

 
GeneralThere is no need to add \ on SourcePath and DestinationPath ... Pin
Ivan Ičin8-Nov-11 8:46
Ivan Ičin8-Nov-11 8:46 
GeneralIf the SourcePath do not exists, it returns true. I think th... Pin
InCodeVB7-Nov-11 22:05
InCodeVB7-Nov-11 22:05 
QuestionYour string.Concat benchmark is WRONG!!! Pin
motorboy7914-Nov-11 20:55
motorboy7914-Nov-11 20:55 
AnswerRe: Your string.Concat benchmark is WRONG!!! Pin
Kabwla.Phone29-Nov-11 6:22
Kabwla.Phone29-Nov-11 6:22 

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.