NAME
Archive::Tar::File - a subclass for in-memory extracted file from
Archive::TarSYNOPSIS
my @items = $tar->getfiles;
print $->name, ' ', $->size, "\n" for @items;
print $object->getcontent;
$object->replacecontent('new content');
$object->rename( 'new/full/path/to/file.c' );
DESCRIPTION
Archive::Tar::Files provides a neat little object layer for in-memory
extracted files. It's mostly used internally in Archive::Tar to tidy up the code, but there's no reason users shouldn't use this API as well. AAcccceessssoorrss A lot of the methods in this package are accessors to the various fields in the tar header: name The file's name mode The file's mode uid The user id owning the file gid The group id owning the file size File size in bytes mtimeModification time. Adjusted to mac-time on MacOS if required
chksum Checksum field for the tar header typeFile type - numeric, but comparable to exported constants - see
Archive::Tar's documentation linkname If the file is a symlink, the file it's pointing to magicTar magic string - not useful for most users
versionTar version string - not useful for most users
uname The user name that owns the file gname The group name that owns the file devmajor Device major number in case of a special file devminor Device minor number in case of a special file prefix Any directory to prefix to the extraction path, if anyraw Raw tar header - not useful for most users
Methodsnneeww(( ffiillee ==>> $$ppaatthh ))
Returns a new Archive::Tar::File object from an existing file.
Returns undef on failure.nneeww(( ddaattaa ==>> $$ppaatthh, $data, $opt )
Returns a new Archive::Tar::File object from data.
$path defines the file name (which need not exist), $data the file
contents, and $opt is a reference to a hash of attributes which may be
used to override the default attributes (fields in the tar header), which are described above in the Accessors section. Returns undef on failure.nneeww(( cchhuunnkk ==>> $$cchhuunnkk ))
Returns a new Archive::Tar::File object from a raw 512-byte tar archive
chunk. Returns undef on failure. ffuullllppaatthh Returns the full path from the tar header; this is basically a concatenation of the "prefix" and "name" fields. vvaalliiddaattee Done by Archive::Tar internally when reading the tar file: validate the header against the checksum to ensure integer tar file. Returns true on success, false on failure hhaassccoonntteenntt Returns a boolean to indicate whether the current object has content. Some special files like directories and so on never will have any content. This method is mainly to make sure you don't get warnings for using uninitialized values when looking at an object's content. ggeettccoonntteennttReturns the current content for the in-memory file
ggeettccoonntteennttbbyyrreeffReturns the current content for the in-memory file as a scalar
reference. Normal users won't need this, but it will save memory if you are dealing with very large data files in your tar archive, since it will pass the contents by reference, rather than make a copy of it first.rreeppllaacceeccoonntteenntt(( $$ccoonntteenntt ))
Replace the current content of the file with the new content. This onlyaffects the in-memory archive, not the on-disk version until you write
it. Returns true on success, false on failure.rreennaammee(( $$nneewwnnaammee ))
Rename the current file to $newname.
Note that you must specify a Unix path for $newname, since per tar
standard, all files in the archive must be Unix paths. Returns true on success and false on failure. CCoonnvveenniieennccee mmeetthhooddssTo quickly check the type of a "Archive::Tar::File" object, you can use
the following methods: isfile Returns true if the file is of type "file" isdir Returns true if the file is of type "dir" ishardlink Returns true if the file is of type "hardlink" issymlink Returns true if the file is of type "symlink" ischardev Returns true if the file is of type "chardev" isblockdev Returns true if the file is of type "blockdev" isfifo Returns true if the file is of type "fifo" issocket Returns true if the file is of type "socket" islonglink Returns true if the file is of type "LongLink". Should not happen after a successful "read". islabel Returns true if the file is of type "Label". Should not happen after a successful "read". isunknown Returns true if the file type is "unknown"perl v5.8.8 2006-03-03 Archive::Tar::File(3)