以下のコードは、Microsoftの提案であるか・ツー・コピーのディレクトリ 
と、それは親愛なるで共有されている@iato 
ますが、ソースフォルダの単なるコピーサブディレクトリとファイルを再帰的とそれ自身のフォルダのソースをコピーしません(右クリックのような- >コピーを)。
しかし、この答えの下にはトリッキーな方法があります:
private static void DirectoryCopy(string sourceDirName, string destDirName, bool copySubDirs = true)
        {
            // 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);
                }
            }
        }
ソースフォルダーとサブフォルダーの内容を再帰的にコピーする場合は、次のように使用できます。
string source = @"J:\source\";
string dest= @"J:\destination\";
DirectoryCopy(source, dest);
しかし、ソースディレクトリを自分でコピーする場合(ソースフォルダを右クリックして[コピー]をクリックし、次にコピー先のフォルダで[貼り付け]をクリックした場合と同様)、次のように使用する必要があります。
 string source = @"J:\source\";
 string dest= @"J:\destination\";
 DirectoryCopy(source, Path.Combine(dest, new DirectoryInfo(source).Name));