NAME

File::Stat::Moose - Status info for a file - Moose-based

SYNOPSIS

      use File::Stat::Moose;
      $st = File::Stat::Moose->new( file => '/etc/passwd' );
      print "Size: ", $st->size, "\n";    # named attribute
      print "Blocks: ". $st->[12], "\n";  # numbered attribute

DESCRIPTION

This class provides methods that returns status info for a file. It is the OO-style version of stat/lstat functions. It also throws an exception immediately after error is occurred.

AUTHOR

Piotr Roszatycki <dexter@cpan.org>

LICENSE

Copyright (C) 2007, 2008, 2009 by Piotr Roszatycki <dexter@cpan.org>.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html