- or download this
Object - class
toString() - method
...
Stat - Inherits File
getSize() - method
getModTime() - method
- or download this
use Object::File;
my $file = File->new("bah.mp3");
my $size = $file->getSize();
- or download this
use Object::File;
use Data::Dumper;
my $file = File->new("bah.mp3");
print Dumper($file->find_methods());
- or download this
package Object;
...
my $self = shift;
return $self->{'_objectname'};
}