in reply to stat a file
You can either store the result of stat in an array:
my @stat = stat $filename; say $stat[5];
or you can use the File::stat module, in which case you get an object back:
use File::stat; my $stat_obj = stat $filename; print $stat_obj->mtime;
But you have to decide for one way or another -- mixing them is what led to your confusion in the first place.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: stat a file
by pelos (Initiate) on May 04, 2013 at 06:22 UTC | |
by afoken (Chancellor) on May 04, 2013 at 09:30 UTC |