本文介绍了目录中的文件组根据其前缀的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有图片的文件夹:
的文件夹1:的
的文件:的
ABC-138923
ABC-3223
ABC-33489
ABC-3111
CBA-238923
CBA-1313
CBA-1313
DAC-38932
DAC-1111
DAC-13893
DAC-23232
DAC-9999
我想通过这个文件夹,看看有多少每张照片前修复我的。
I want to go through this folder and count how many of each picture pre-fix I have.
例如,有预先确定ABC的4张图片和3张以上的预修复CBA。
For example, there are 4 pictures of pre-fix ABC and 3 pictures of pre-fix CBA above.
我有一个困难时期试图通过这个弄清楚如何循环。 ?任何人都可以给我一个手
I'm having a hard time trying to figure out how to loop through this. Anyone can give me a hand?
推荐答案
不是一个循环,但更加清晰易读:
Not a loop, but more clear and readable:
string[] fileNames = ...; //some initializing code
var prefixes = fileNames.GroupBy(x => x.Split('-')[0]).
Select(y => new {Prefix = y.Key, Count = y.Count()});
UPD:
要显示每个前缀计数:
foreach (var prefix in prefixes)
{
Console.WriteLine("Prefix: {0}, Count: {1}", prefix.Prefix, prefix.Count);
}
这篇关于目录中的文件组根据其前缀的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!