in reply to Regex/Sort Questions

Given the format you use, you can simply sort lexically.
my @oldest_first = sort @file_names;
my @newest_first = reverse sort @file_names;