mkv

Untitled

mkv
May 15th, 2014
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 KB | None | 0 0
  1.             Console.WriteLine(files.Count + " files after prefix filtering");
  2.             files.Sort((a,b) =>
  3.                 a.Substring(a.LastIndexOf('_')).CompareTo(
  4.                 b.Substring(b.LastIndexOf('_')))
  5.             );
  6.             Console.WriteLine("Oldest: " + files[0]);
  7.             Console.WriteLine("Newest: " + files[files.Count-1]);
  8.             return 0;
  9.  
  10.  
  11. -0-203720-ed-nitor <~/inc> ~/dev/cs/ircavail/ircavail/bin/Debug/ircavail.exe rizon_ ed
  12. 22922 files before prefix filtering
  13. 13519 files after prefix filtering
  14. Oldest: ./log/2013-06/rizon_#drawfriends_20130609.log
  15. Newest: ./log/rizon_#nipponsei_20140515.log
Advertisement
Add Comment
Please, Sign In to add comment