摘要: 使用递归的方式将文件夹内所有内容复制到新的路径 1 public void CopyDirectory(string scrPath, string savePath) 2 { 3 if (Directory.Exists(scrPath))//检查路径(目录)是否存... 阅读全文
posted @ 2014-04-14 09:12 威Z 阅读(754) 评论(0) 推荐(0) 编辑