in reply to Perl Stat Issue
The files are not in the current directory. You need to supply the path to stat as well.
Probably something like:
use File::stat; my $path = '/to/my/directory'; opendir(DIR, $path) or die("Cannot open directory"); my @files= readdir(DIR); closedir DIR; foreach my $file (@files) { my $mod = (stat("$path/$file"))[9]; print "Filename $file has the mod date of $mod \n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl Stat Issue
by omegaweaponZ (Beadle) on Jun 26, 2013 at 14:50 UTC |