C # Implementing a file or directory to a specified directory

Source: Internet
Author: User

 public void Copyfilestodirkeepsrcdirname (string srcpath, String destDir) {if (Directory.Exists (Srcpath                ) {DirectoryInfo srcdirectory = new DirectoryInfo (Srcpath);            CopyDirectory (Srcpath, DestDir + @ "\" + srcdirectory.name);            } else {CopyFile (Srcpath, DestDir); }} public void Copyfilestodir (string srcpath, String destDir) {if (Directory.Exists (SRCPA            th)) {copydirectory (Srcpath, DestDir);            } else {CopyFile (Srcpath, DestDir);  }} private void CopyDirectory (string srcdir, String destDir) {DirectoryInfo srcdirectory            = new DirectoryInfo (srcdir);            DirectoryInfo destdirectory = new DirectoryInfo (DestDir); if (DestDirectory.FullName.StartsWith (Srcdirectory.fullname, Stringcomparison.currentcultureignorecase){throw new Exception ("Cannot copy parent to child directory.");            } if (!srcdirectory.exists) {return;            } if (!destdirectory.exists) {destdirectory.create ();            } fileinfo[] files = srcdirectory.getfiles (); for (int i = 0; i < files. Length; i++) {CopyFile (files[i].            FullName, Destdirectory.fullname);            } directoryinfo[] dirs = Srcdirectory.getdirectories (); for (int j = 0; J < dirs. Length; J + +) {copydirectory (dirs[j]. FullName, destdirectory.fullname + @ "\" + dirs[j].            Name); }} private void CopyFile (String srcfile, String destDir) {DirectoryInfo destdirectory =            New DirectoryInfo (DestDir);            String fileName = Path.getfilename (srcfile); if (!            File.exists (Srcfile)) {    Return            } if (!destdirectory.exists) {destdirectory.create ();        } file.copy (Srcfile, destdirectory.fullname + @ "\" + FileName, True);  }

C # Implementing a file or directory to a specified directory

Related Article

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.