Copy folder in C#

29/03/2018 Nosomovo 0

Nếu bạn đang tìm code c# thực hiện copy thư mục thì đây, ngay bên dưới đây là code bạn cần nhé! private void DirectoryCopy(string sourceDir, string destDir) { DirectoryInfo dir = new DirectoryInfo(sourceDir); DirectoryInfo[] dirs = dir.GetDirectories(); if (!dir.Exists) { throw new DirectoryNotFoundException( “Không tìm thấy thư mục: ”