in reply to Re: Perl Stat Issuein thread Perl Stat Issue
use File::stat; my $testfile = "/to/my/directory/test.file"; my $st = stat($testfile) or die "No $testfile: $!"; [download]