C # Recursive Replication folder

Source: Internet
Author: User

        /// <param name= "Sources" >Original Path</param>        /// <param name= "dest" >Target Path</param>                Private voidCopyFile (stringSourcesstringdest) {            if(directory.exists (sources)) {DirectoryInfo Dinfo=NewDirectoryInfo (sources);//It's a file path, so it can't contain the able name.                foreach(FileSystemInfo FinchDinfo. Getfilesysteminfos ()) {//Target Path destname = target folder path + Zi Lu (or folder) name under the original folderString Destname =Path.Combine (dest, f.name); if(f isFileInfo)//if it's a file, copy it .{System.IO.File.Copy (F.fullname, Destname,true);//true indicates that files with the same name can be overwritten                    }                    Else//if it's a folder, create a folder, copy it, and copy it recursively.                    {                        if(!directory.exists (Destname))                        {directory.createdirectory (destname); } CopyFile (F.fullname, destname);//To adjust                    }                }            }        }        

C # Recursive Replication folder

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.