in reply to Re^3: efficient way to find most recently modified files?in thread efficient way to find most recently modified files?
my @files_sorted = sort (glob('yourpath/bobby*.txt')); my $latest_file = $files_sorted[-1]; [download]
Cheers
mildside