Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.IO;
- using System.Linq;
- namespace Linq_group_setOperation
- {
- class Program
- {
- static void Main(string[] args)
- {
- string[] files = Directory.GetFiles(@"g:\tempSuG");
- var elencoRaggruppato = files
- .GroupBy(file => Path.GetExtension(file), file => file.ToUpper())
- .Where(item => item.Count()>10);
- foreach (var gruppoEstensione in elencoRaggruppato.OrderBy(gruppo => gruppo.Count())
- )
- {
- Console.Write($"{gruppoEstensione.Key.ToUpper()}: ");
- foreach (string nomeFile in gruppoEstensione) Console.WriteLine(nomeFile);
- Console.WriteLine(new string('-', 70));
- }
- foreach (var gruppoEstensione in elencoRaggruppato.OrderBy(gruppo => gruppo.Count()))
- {
- Console.Write($"{gruppoEstensione.Key.ToUpper()}: ");
- Console.WriteLine(gruppoEstensione.Count());
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement