如何复制一个目录里面的所有目录和文件
2024-07-21 02:16:19
供稿:网友
本文介绍如何将一个目录里面的所有文件复制到目标目录里面。
下面介绍几个我们在该例程中将要使用的类:
1、directory:exposes static methods for creating, moving, and enumerating through directories and subdirectories.
2、path:performs operations on string instances that contain file or directory path information. these operations are performed in a cross-platform manner.
3、file:provides static methods for the creation, copying, deletion, moving, and opening of files, and aids in the creation of filestream objects.
这两个类里都是不可继承的,是从object直接继承来的,被实现成sealed,上面的解释均来自msdn。
下面是实现的代码,代码中的细节不在这里详细描述,请看代码注释:
// ======================================================
// 实现一个静态方法将指定文件夹下面的所有内容copy到目标文件夹下面
// ======================================================
public static void copydir(string srcpath,string aimpath){
// 检查目标目录是否以目录分割字符结束如果不是则添加之
if(aimpath[aimpath.length-1] != path.directoryseparatorchar)
aimpath += path.directoryseparatorchar;
// 判断目标目录是否存在如果不存在则新建之
if(!directory.exists(aimpath)) directory.createdirectory(aimpath);
// 得到源目录的文件列表,该里面是包含文件以及目录路径的一个数组
// 如果你指向copy目标文件下面的文件而不包含目录请使用下面的方法
// string[] filelist = directory.getfiles(srcpath);
string[] filelist = directory.getfilesystementries(srcpath);
// 遍历所有的文件和目录
foreach(string file in filelist){
// 先当作目录处理如果存在这个目录就递归copy该目录下面的文件
if(directory.exists(file))
copydir(file,aimpath+path.getfilename(file));
// 否则直接copy文件
else
file.copy(file,aimpath+path.getfilename(file),true);
}
}
嘿嘿!这次给大家说的功能比较简单,适合初学者,希望对初学者有所帮助!如果你需要将该功能使用在web工程中,那么请设置给aspnet帐号足够的权限,不过这样做是很危险的,不建议这样做。