这篇文章主要讲解了“C#怎么拷贝整个文件夹及子目录和其中文件”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“C#怎么拷贝整个文件夹及子目录和其中文件”吧!
创新互联公司专注于企业网络营销推广、网站重做改版、卫东网站定制设计、自适应品牌网站建设、H5开发、商城建设、集团公司官网建设、成都外贸网站建设、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为卫东等各大城市提供网站开发制作服务。下面一段代码给大家介绍C#拷贝整个文件夹以及子目录和其中文件,具体代码如下所示:
private void CopyDirectory( string srcPath, string desPath) { string folderName = srcdir.Substring(srcdir.LastIndexOf( "\\" )+1); string desfolderdir = desPath + "\\" + folderName; if (desdir.LastIndexOf( "\\" ) == (desPath.Length - 1)) { desfolderdir = desPath + folderName; } string [] filenames = Directory.GetFileSystemEntries(srcPath); foreach ( string file in filenames) { if (Directory.Exists(file)) { string currentdir = desfolderdir + "\\" + file.Substring(file.LastIndexOf( "\\" ) + 1); if (!Directory.Exists(currentdir)) { Directory.CreateDirectory(currentdir); } CopyDirectory(file, desfolderdir); } else { string srcfileName = file.Substring(file.LastIndexOf( "\\" )+1); srcfileName = desfolderdir + "\\" + srcfileName; if (!Directory.Exists(desfolderdir)) { Directory.CreateDirectory(desfolderdir); } File.Copy(file, srcfileName); } } }
ps:C# 拷贝指定文件夹下的所有文件及其文件夹到指定目录
要拷贝的文件及其文件夹结构
其中.lab文件不能覆盖
////// 拷贝oldlab的文件到newlab下面/// /// lab文件所在目录(@"~\labs\oldlab")/// 保存的目标目录(@"~\labs\newlab")///返回:true-拷贝成功;false:拷贝失败 public bool CopyOldLabFilesToNewLab(string sourcePath, string savePath){ if (!Directory.Exists(savePath)) { Directory.CreateDirectory(savePath); } #region //拷贝labs文件夹到savePath下 try { string[] labDirs = Directory.GetDirectories(sourcePath);//目录 string[] labFiles = Directory.GetFiles(sourcePath);//文件 if (labFiles.Length > 0) { for (int i = 0; i < labFiles.Length; i++) { if (Path.GetExtension(labFiles[i]) != ".lab")//排除.lab文件 { File.Copy(sourcePath + "\\" + Path.GetFileName(labFiles[i]), savePath + "\\" + Path.GetFileName(labFiles[i]), true); } } } if (labDirs.Length > 0) { for (int j = 0; j < labDirs.Length; j++) { Directory.GetDirectories(sourcePath + "\\" + Path.GetFileName(labDirs[j])); //递归调用 CopyOldLabFilesToNewLab(sourcePath + "\\" + Path.GetFileName(labDirs[j]), savePath + "\\" + Path.GetFileName(labDirs[j])); } } } catch (Exception) { return false; } #endregion return true;}
感谢各位的阅读,以上就是“C#怎么拷贝整个文件夹及子目录和其中文件”的内容了,经过本文的学习后,相信大家对C#怎么拷贝整个文件夹及子目录和其中文件这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是创新互联网站建设公司,,小编将为大家推送更多相关知识点的文章,欢迎关注!