Copy the entire contents of a directory in C#

前端 未结 22 771
日久生厌
日久生厌 2020-11-22 07:13

I want to copy the entire contents of a directory from one location to another in C#.

There doesn\'t appear to be a way to do this using System.IO class

相关标签:
22条回答
  • 2020-11-22 07:31

    Better than any code (extension method to DirectoryInfo with recursion)

    public static bool CopyTo(this DirectoryInfo source, string destination)
        {
            try
            {
                foreach (string dirPath in Directory.GetDirectories(source.FullName))
                {
                    var newDirPath = dirPath.Replace(source.FullName, destination);
                    Directory.CreateDirectory(newDirPath);
                    new DirectoryInfo(dirPath).CopyTo(newDirPath);
                }
                //Copy all the files & Replaces any files with the same name
                foreach (string filePath in Directory.GetFiles(source.FullName))
                {
                    File.Copy(filePath, filePath.Replace(source.FullName,destination), true);
                }
                return true;
            }
            catch (IOException exp)
            {
                return false;
            }
        }
    
    0 讨论(0)
  • 2020-11-22 07:33

    Sorry for the previous code, it still had bugs :( (fell prey to the fastest gun problem) . Here it is tested and working. The key is the SearchOption.AllDirectories, which eliminates the need for explicit recursion.

    string path = "C:\\a";
    string[] dirs = Directory.GetDirectories(path, "*.*", SearchOption.AllDirectories);
    string newpath = "C:\\x";
    try
    {
        Directory.CreateDirectory(newpath);
    }
    catch (IOException ex)
    {
        Console.WriteLine(ex.Message);
    }
    for (int j = 0; j < dirs.Length; j++)
    {
        try
        {
            Directory.CreateDirectory(dirs[j].Replace(path, newpath));
        }
        catch (IOException ex)
        {
            Console.WriteLine(ex.Message);
        }
    }
    
    string[] files = Directory.GetFiles(path, "*.*", SearchOption.AllDirectories);
    for (int j = 0; j < files.Length; j++)            
    {
        try
        {
            File.Copy(files[j], files[j].Replace(path, newpath));
        }
        catch (IOException ex)
        {
            Console.WriteLine(ex.Message);
        }
    }
    
    0 讨论(0)
  • 2020-11-22 07:33

    Here is an extension method for DirectoryInfo a la FileInfo.CopyTo (note the overwrite parameter):

    public static DirectoryInfo CopyTo(this DirectoryInfo sourceDir, string destinationPath, bool overwrite = false)
    {
        var sourcePath = sourceDir.FullName;
    
        var destination = new DirectoryInfo(destinationPath);
    
        destination.Create();
    
        foreach (var sourceSubDirPath in Directory.EnumerateDirectories(sourcePath, "*", SearchOption.AllDirectories))
            Directory.CreateDirectory(sourceSubDirPath.Replace(sourcePath, destinationPath));
    
        foreach (var file in Directory.EnumerateFiles(sourcePath, "*", SearchOption.AllDirectories))
            File.Copy(file, file.Replace(sourcePath, destinationPath), overwrite);
    
        return destination;
    }
    
    0 讨论(0)
  • 2020-11-22 07:33

    Use this class.

    public static class Extensions
    {
        public static void CopyTo(this DirectoryInfo source, DirectoryInfo target, bool overwiteFiles = true)
        {
            if (!source.Exists) return;
            if (!target.Exists) target.Create();
    
            Parallel.ForEach(source.GetDirectories(), (sourceChildDirectory) => 
                CopyTo(sourceChildDirectory, new DirectoryInfo(Path.Combine(target.FullName, sourceChildDirectory.Name))));
    
            foreach (var sourceFile in source.GetFiles())
                sourceFile.CopyTo(Path.Combine(target.FullName, sourceFile.Name), overwiteFiles);
        }
        public static void CopyTo(this DirectoryInfo source, string target, bool overwiteFiles = true)
        {
            CopyTo(source, new DirectoryInfo(target), overwiteFiles);
        }
    }
    
    0 讨论(0)
  • 2020-11-22 07:34

    Hmm, I think I misunderstand the question but I'm going to risk it. What's wrong with the following straightforward method?

    public static void CopyFilesRecursively(DirectoryInfo source, DirectoryInfo target) {
        foreach (DirectoryInfo dir in source.GetDirectories())
            CopyFilesRecursively(dir, target.CreateSubdirectory(dir.Name));
        foreach (FileInfo file in source.GetFiles())
            file.CopyTo(Path.Combine(target.FullName, file.Name));
    }
    

    EDIT Since this posting has garnered an impressive number of downvotes for such a simple answer to an equally simple question, let me add an explanation. Please read this before downvoting.

    First of all, this code is not intendend as a drop-in replacement to the code in the question. It is for illustration purpose only.

    Microsoft.VisualBasic.Devices.Computer.FileSystem.CopyDirectory does some additional correctness tests (e.g. whether the source and target are valid directories, whether the source is a parent of the target etc.) that are missing from this answer. That code is probably also more optimized.

    That said, the code works well. It has (almost identically) been used in a mature software for years. Apart from the inherent fickleness present with all IO handlings (e.g. what happens if the user manually unplugs the USB drive while your code is writing to it?), there are no known problems.

    In particular, I’d like to point out that the use of recursion here is absolutely not a problem. Neither in theory (conceptually, it’s the most elegant solution) nor in practice: this code will not overflow the stack. The stack is large enough to handle even deeply nested file hierarchies. Long before stack space becomes a problem, the folder path length limitation kicks in.

    Notice that a malicious user might be able to break this assumption by using deeply-nested directories of one letter each. I haven’t tried this. But just to illustrate the point: in order to make this code overflow on a typical computer, the directories would have to be nested a few thousand times. This is simply not a realistic scenario.

    0 讨论(0)
  • 2020-11-22 07:35

    This site always have helped me out a lot, and now it's my turn to help the others with what I know.

    I hope that my code below be useful for someone.

    string source_dir = @"E:\";
    string destination_dir = @"C:\";
    
    // substring is to remove destination_dir absolute path (E:\).
    
    // Create subdirectory structure in destination    
        foreach (string dir in System.IO.Directory.GetDirectories(source_dir, "*", System.IO.SearchOption.AllDirectories))
        {
            System.IO.Directory.CreateDirectory(System.IO.Path.Combine(destination_dir, dir.Substring(source_dir.Length + 1)));
            // Example:
            //     > C:\sources (and not C:\E:\sources)
        }
    
        foreach (string file_name in System.IO.Directory.GetFiles(source_dir, "*", System.IO.SearchOption.AllDirectories))
        {
            System.IO.File.Copy(file_name, System.IO.Path.Combine(destination_dir, file_name.Substring(source_dir.Length + 1)));
        }
    
    0 讨论(0)
提交回复
热议问题