文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>My.Class.IO.DirOperate.CopyDir(string strFromDirectory, string strToDirectory)

My.Class.IO.DirOperate.CopyDir(string strFromDirectory, string strToDirectory)

时间:2010-08-26  来源:Alon Xu

public bool CopyDir(string strFromDirectory, string strToDirectory)
{
    Directory.CreateDirectory(strToDirectory);

    if (!Directory.Exists(strFromDirectory)) return false;

    string[] directories = Directory.GetDirectories(strFromDirectory);

    if (directories.Length > 0)
    {
        foreach (string d in directories)
        {
            CopyDir(d, strToDirectory + d.Substring(d.LastIndexOf("\\")));
        }
    }
    string[] files = Directory.GetFiles(strFromDirectory);

    if (files.Length > 0)
    {
        foreach (string s in files)
        {
            File.Copy(s, strToDirectory + s.Substring(s.LastIndexOf("\\")));
        }
    }
    return true;
}
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载