Question

I have this for getting the files in order by date but how do I get the most recent 5 files in a list regardless if there is not 5:

    var files = Directory.GetFiles(Settings.SharedDirectory, "*.log").OrderByDescending(d => new FileInfo(d).LastWriteTime);
    foreach (var directory in files)
    {
      Console.WriteLine(directory);
    }

I know how to get the .Last but I need the last 5.

Thanks!

Was it helpful?

Solution

You want .Take(5).​​​​​​​​​​​​​​

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top