递归复制文件

时间:2011-08-15 12:25:36

标签: c# .net file-copying

我在C#中找到了一个用于执行递归文件复制的小片段,但我有点难过。我基本上需要将目录结构复制到另一个位置,沿着这条线......

来源:C:\ data \ servers \ mc

目标:E:\ mc

我现在的复制功能代码是......

    //Now Create all of the directories
    foreach (string dirPath in Directory.GetDirectories(baseDir, "*", SearchOption.AllDirectories))
    {
        Directory.CreateDirectory(dirPath.Replace(baseDir, targetDir));
    }


    // Copy each file into it’s new directory.
    foreach (string file in Directory.GetFiles(baseDir, "*.*", SearchOption.AllDirectories))
    {
        Console.WriteLine(@"Copying {0}\{1}", targetDir, Path.GetFileName(file));
        if (!CopyFile(file, Path.Combine(targetDir, Path.GetFileName(file)), false))
        {
            int err = Marshal.GetLastWin32Error();
            Console.WriteLine("[ERROR] CopyFile Failed on {0} with code {1}", file, err);
        }
    }

问题在于,在第二个范围中,我要么:

  1. 使用Path.GetFileName(file)获取没有路径的实际文件名,但我丢失了目录“mc”目录结构
  2. 使用没有Path.Combine的“文件”。
  3. 无论哪种方式,我都要做一些讨厌的字符串工作。有没有一种很好的方法在C#中做到这一点(我对.NET API缺乏了解导致我过度复杂化)

3 个答案:

答案 0 :(得分:22)

MSDN有一个完整的示例:How to: copy directories

using System;
using System.IO;

class DirectoryCopyExample
{
    static void Main()
    {
        // Copy from the current directory, include subdirectories.
        DirectoryCopy(".", @".\temp", true);
    }

    private static void DirectoryCopy(string sourceDirName, string destDirName, 
                                      bool copySubDirs)
    {
        // Get the subdirectories for the specified directory.
        DirectoryInfo dir = new DirectoryInfo(sourceDirName);

        if (!dir.Exists)
        {
            throw new DirectoryNotFoundException(
                "Source directory does not exist or could not be found: "
                + sourceDirName);
        }

        DirectoryInfo[] dirs = dir.GetDirectories();
        // If the destination directory doesn't exist, create it.
        if (!Directory.Exists(destDirName))
        {
            Directory.CreateDirectory(destDirName);
        }

        // Get the files in the directory and copy them to the new location.
        FileInfo[] files = dir.GetFiles();
        foreach (FileInfo file in files)
        {
            string temppath = Path.Combine(destDirName, file.Name);
            file.CopyTo(temppath, false);
        }

        // If copying subdirectories, copy them and their contents to new location.
        if (copySubDirs)
        {
            foreach (DirectoryInfo subdir in dirs)
            {
                string temppath = Path.Combine(destDirName, subdir.Name);
                DirectoryCopy(subdir.FullName, temppath, copySubDirs);
            }
        }
    }
}

答案 1 :(得分:0)

而不是

foreach (string file in Directory.GetFiles(baseDir, "*.*", SearchOption.AllDirectories))
{

做这样的事情

foreach (FileInfo fi in source.GetFiles())
{
     fi.CopyTo(Path.Combine(target.ToString(), fi.Name), true);
}

答案 2 :(得分:0)

answer的非递归替换为:

private static void DirectoryCopy(string sourceBasePath, string destinationBasePath, bool recursive = true)
{
    if (!Directory.Exists(sourceBasePath))
        throw new DirectoryNotFoundException($"Directory '{sourceBasePath}' not found");

    var directoriesToProcess = new Queue<(string sourcePath, string destinationPath)>();
    directoriesToProcess.Enqueue((sourcePath: sourceBasePath, destinationPath: destinationBasePath));
    while (directoriesToProcess.Any())
    {
        (string sourcePath, string destinationPath) = directoriesToProcess.Dequeue();

        if (!Directory.Exists(destinationPath))
            Directory.CreateDirectory(destinationPath);

        var sourceDirectoryInfo = new DirectoryInfo(sourcePath);
        foreach (FileInfo sourceFileInfo in sourceDirectoryInfo.EnumerateFiles())
            sourceFileInfo.CopyTo(Path.Combine(destinationPath, sourceFileInfo.Name), true);

        if (!recursive)
            continue;

        foreach (DirectoryInfo sourceSubDirectoryInfo in sourceDirectoryInfo.EnumerateDirectories())
            directoriesToProcess.Enqueue((
                sourcePath: sourceSubDirectoryInfo.FullName,
                destinationPath: Path.Combine(destinationPath, sourceSubDirectoryInfo.Name)));
    }
}