以前写过一个通过计算目录遍历所有文件和子目录的方法来获得某目录下的文件个数,结果发现速度极慢,远远不及系统本身目录属性里边显示的速度。
int filenum = 0;
/**//// <summary>
/// 获取某目录下的所有文件(包括子目录下文件)的数量
/// </summary>
/// <param name="srcpath"></param>
/// <returns></returns>
public int getfilenum(string srcpath)
{
try
{
// 得到源目录的文件列表,该里面是包含文件以及目录路径的一个数组
string[] filelist = system.io.directory.getfilesystementries(srcpath);
// 遍历所有的文件和目录
foreach(string file in filelist)
{
// 先当作目录处理如果存在这个目录就重新调用getfilenum(string srcpath)
if(system.io.directory.exists(file))
getfilenum(file);
else
filenum++;
}
}
catch (exception e)
{
messagebox.show (e.tostring());
}
return filenum;
}
近来发现了一个效率更高的方法,只需遍历目录就能获得文件个数,现分享一下
system.io.directoryinfo dirinfo = new system.io.directoryinfo(dirpath);
public static int getfilescount(system.io.directoryinfo dirinfo)
{
int totalfile = 0;
totalfile += dirinfo.getfiles().length;
foreach (system.io.directoryinfo subdir in dirinfo.getdirectories())
{
totalfile += getfilescount(subdir);
}
return totalfile;
}
商业源码热门下载www.html.org.cn
新闻热点
疑难解答