日期:2014-05-17 浏览次数:20547 次
int count=info.GetFiles().Count();
------解决方案--------------------
DirectoryInfo info = new DirectoryInfo(path);
int count = info.GetFiles("*.jpg").Length + info.GetFiles("*.gif").Length + info.GetFiles("*.png").Length + info.GetFiles("*.bmp").Length;
or
int count = System.IO.Directory.GetFiles("path", "*.jpg").Length + System.IO.Directory.GetFiles("path", "*.gif").Length + System.IO.Directory.GetFiles("path", "*.png").Length + System.IO.Directory.GetFiles("path", "*.bmp").Length;
------解决方案--------------------
DirectoryInfo info = new DirectoryInfo(path);
用info.GetFiles().Length获取文件数
------解决方案--------------------
info.GetFiles()里面可以指定类型的
------解决方案--------------------
info.GetFiles().Length