This is a routine I've used in the past to add files to an Archive::Tar object (in the process of creating a tar archive). My objective was to get relative paths in the archive, rather than paths from the root.

Usage:

my $tar = Archive::Tar->new; add_to_tar($tar, $thing_to_add, $base_dir); $tar->write($gz, 9);
$thing_to_add can be either a file or a directory.

$base_dir is the key to relative paths. For example, say I had a directory directory '/foo/bar', and in that directory is another directory 'baz'. I can do something like this:

add_to_tar($tar, 'baz', '/foo/bar');
Alternatively, the second directory could contain the full path:
add_to_tar($tar, '/foo/bar/baz', '/foo/bar');
Hope this is useful.
sub add_to_tar { my($tar, $thing, $base) = @_; if (defined $base) { chdir $base or die "Can't chdir to $base: $!"; $thing =~ s!^$base/?!!; } if (-f $thing) { $tar->add_files($thing); } elsif (-d $thing) { my $code = sub { return if !-f $_; local *FH; open FH, $_ or die "Can't open $_: $!"; binmode FH; my $c = do { local $/; <FH> }; close FH or die "Can't close $_: $!"; $tar->add_data($File::Find::name, $c); }; find $code, $thing; } }

In reply to Adding files to Archive::Tar by btrott

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.