in reply to Re^2: How do I traverse the files in descending order of modification using File::Find
in thread How do I traverse the files in descending order of modification using File::Find
Process the files in order of modification time (see sort and How do I sort a hash by value).my %file_times; # Then in the wanted function: $file_times{$File::Find::name} = -M $_;
|
|---|