zoukankan      html  css  js  c++  java
  • C# 把一个文件夹下所有文件复制到另一个文件夹下

    public static void CopyDirectory(string srcPath, string destPath)
    {
      try
        {
        DirectoryInfo dir
    = new DirectoryInfo(srcPath);
        FileSystemInfo[] fileinfo
    = dir.GetFileSystemInfos(); //获取目录下(不包含子目录)的文件和子目录     foreach (FileSystemInfo i in fileinfo) { if (i is DirectoryInfo) //判断是否文件夹 { if (!Directory.Exists(destPath+"\"+i.Name)) { Directory.CreateDirectory(destPath + "\" + i.Name); //目标目录下不存在此文件夹即创建子文件夹 } CopyDir(i.FullName, destPath + "\" + i.Name); //递归调用复制子文件夹 } else { File.Copy(i.FullName, destPath + "\" + i.Name,true); //不是文件夹即复制文件,true表示可以覆盖同名文件 } } } catch (Exception e) { throw; }
    }

    调用CopyDirectory方法前可以先判断原路径与目标路径是否存在


    if
    (Directory.Exists(srcPath)&&Directory.Exists(destPath)) { CopyDirectory(srcPath,destPath);
    }

     原文地址:http://www.cnblogs.com/iamlucky/p/5996222.html

  • 相关阅读:
    购物车宣传页
    项目开发流程
    AJAX跨域
    jQuery中的AJAX
    AJAX封装
    AJAX里使用模板引擎
    AJAX的具体使用
    AJAX的基本使用
    js技巧汇总
    CSS特效汇集
  • 原文地址:https://www.cnblogs.com/iamlucky/p/5996222.html
Copyright © 2011-2022 走看看