Chirp::Stat - Perl Chirp file stat information, much like Unix stat structure.
The objects and methods provided by this package correspond to the native C API in chirp_types.h. This module is automatically loaded with Chirp::Client.
Chirp::Stat objects are not be created directly, but instead are the result of calling Chirp::Client::stat and Chirp::Client::ls.
head1 EXAMPLE
use Chirp::Client;
my $client = Chip::Client->new(localhost => 'localhost:9000');
my $s = $client->stat('/myfile.txt');
print $s->size, "\n";
pathThe target path.
deviceID of device containing file.
inodeinode number
modefile mode permissions
nlinksnumber of hard links
uiduser ID of owner
gidgroup ID of owner
rdevdevice ID if special file
sizetotal size, in bytes
blksizeblock size for file system I/O
blocksnumber of 512B blocks allocated
atimenumber of seconds since epoch since last access
mtimenumber of seconds since epoch since last modification
ctimenumber of seconds since epoch since last status change