5
votes
What is a good way to find the latest created file in a folder in c#?
Sorting the files is taking you O(nlogn) time. If all you need is the most recently created, it would be faster to just scan through the files and find the most recent---O(n).
…
