欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#实现复制文件夹中文件到另一个文件夹的方法

程序员文章站 2023-11-20 23:08:22
本文实例讲述了c#实现复制文件夹中文件到另一个文件夹的方法。分享给大家供大家参考。具体如下: private void copydir(string srcpat...

本文实例讲述了c#实现复制文件夹中文件到另一个文件夹的方法。分享给大家供大家参考。具体如下:

private void copydir(string srcpath, string aimpath)
{
 try
 {
 // 检查目标目录是否以目录分割字符结束如果不是则添加
 if (aimpath[aimpath.length - 1] != system.io.path.directoryseparatorchar)
 {
 aimpath += system.io.path.directoryseparatorchar;
 }
 // 判断目标目录是否存在如果不存在则新建
 if (!system.io.directory.exists(aimpath))
 {
 system.io.directory.createdirectory(aimpath);
 }
 // 得到源目录的文件列表,该里面是包含文件以及目录路径的一个数组
 // 如果你指向copy目标文件下面的文件而不包含目录请使用下面的方法
 // string[] filelist = directory.getfiles(srcpath);
 string[] filelist = system.io.directory.getfilesystementries(srcpath);
 // 遍历所有的文件和目录
 foreach (string file in filelist)
 {
 // 先当作目录处理如果存在这个目录就递归copy该目录下面的文件
 if(system.io.directory.exists(file))
 {
 copydir(file, aimpath + system.io.path.getfilename(file));
 }
 // 否则直接copy文件
 else
 {
 system.io.file.copy(file, aimpath + system.io.path.getfilename(file),true);
 }
 }
 }
 catch(exception e)
 {
 throw;
 }
 }
}

希望本文所述对大家的c#程序设计有所帮助。