You mentioned portability was a requirement, so you should use File::Spec to build paths. "/" is not the file seperator on Macs, for example.
I have a script that needs to determine the oldest file in a particular directory
If all you're concerned about is which file is the oldest, there's no need to sort:
sub get_oldest {
my ($dir) = @_;
my $oldest;
my $oldest_time;
my $file_spec = File::Spec->catfile($dir, '*.pl');
foreach (glob $file_spec") {
my $time = (stat $_)[10];
if (!$oldest_time || $time < $oldest_time) {
$oldest = $_;
$oldest_time = $time;
}
}
return $oldest;
}
I don't know how efficient glob is. You can get rid of it:
use DirHandle ();
use File::Spec ();
sub get_oldest {
my ($dir) = @_;
my $oldest;
my $oldest_time;
my $dh = DirHandle->new($dir);
while (defined($_ = $dh->read())) {
next unless (/\.pl$/i);
my $full_path = File::Spec->catfile($dir, $_);
my $time = (stat $full_path)[10];
if (!$oldest_time || $time < $oldest_time) {
$oldest = $_;
$oldest_time = $time;
}
}
return $oldest;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|