Archive::Tar::File - a subclass for in-memory extracted file from Archive::Tar |
Archive::Tar::File - a subclass for in-memory extracted file from Archive::Tar
my @items = $tar->get_files;
print $_->name, ' ', $_->size, "\n" for @items;
print $object->get_content; $object->replace_content('new content');
$object->rename( 'new/full/path/to/file.c' );
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.
A lot of the methods in this package are accessors to the various fields in the tar header:
Returns a new Archive::Tar::File object from an existing file.
Returns undef on failure.
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.
Returns a new Archive::Tar::File object from a raw 512-byte tar archive chunk.
Returns undef on failure.
Extract this object, optionally to an alternative name.
See Archive::Tar->extract_file
for details.
Returns true on success and false on failure.
Returns the full path from the tar header; this is basically a
concatenation of the prefix
and name
fields.
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
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.
Returns the current content for the in-memory file
Returns 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.
Replace the current content of the file with the new content. This only affects the in-memory archive, not the on-disk version until you write it.
Returns true on success, false on failure.
Rename the current file to $new_name.
Note that you must specify a Unix path for $new_name, since per tar standard, all files in the archive must be Unix paths.
Returns true on success and false on failure.
Change mode of $file to $mode. The mode can be a string or a number which is interpreted as octal whether or not a leading 0 is given.
Returns true on success and false on failure.
Change owner of $file to $user. If a $group is given that is changed as well. You can also pass a single parameter with a colon separating the use and group as in 'root:wheel'.
Returns true on success and false on failure.
To quickly check the type of a Archive::Tar::File
object, you can
use the following methods:
file
dir
hardlink
symlink
chardev
blockdev
fifo
socket
LongLink
.
Should not happen after a successful read
.
Label
.
Should not happen after a successful read
.
unknown
Archive::Tar::File - a subclass for in-memory extracted file from Archive::Tar |