My thanks to all who provided help and assistance with this.
I now have a working test solution which I present below as this may be useful for others.
I used Path::Tiny,
as originally shown by ++tybalt89,
to generate the list of files for archiving.
I needed to tweak the suggested code in a few places, as follows:
-
Path::Tiny's visit() method
"Executes a callback for each child of a directory.".
This meant that the parent directory wasn't added to the array for add_files():
easily fixed by preloading that array with the parent directory.
-
For my purposes, the contents of the directory structure was well known,
so no filtering — based on file types, permissions or other characteristics — was required.
In other situations, some filtering may be required:
see ++tybalt89's and ++Tux'
examples[1,2]
for possible ways to achieve this.
-
I also needed to change directories to get the exact archive I wanted.
This may not be necessary in other circumstances.
Note the use of the autodie pragma in a limited, lexical scope
to handle problems with chdir
and provide useful feedback if they occur.
-
Not an actual tweak required by this code,
but use 5.016; was added because it mirrors the version I'm coding to for $work$
(and increases confidence that this won't have issues in my production environment).
If you're using this code as a template, and not adding anything fancy, replacing that with a simple
use strict; would probably be fine.
Here's the test script.
Note that the directory structure under $src_dir is exactly the same as that presented in the OP.
#!/usr/bin/env perl
use 5.016;
use warnings;
use Archive::Tar;
use Cwd;
use Path::Tiny;
my $src_dir = '/Users/ken/tmp/test_arch/src';
my $zip_dir = '/Users/ken/tmp/test_arch/zip';
my $top_dir = 'fred';
my $zip_name = 'fred.tar.gz';
my $zip_path = path($zip_dir, $zip_name);
{
use autodie;
my $cur_dir = getcwd;
chdir $src_dir or die;
my @tar_files = ($top_dir);
path($top_dir)->visit(
sub { push @tar_files, "$_" }, { recurse => 1 }
);
my $tar = Archive::Tar::->new();
$tar->add_files(@tar_files);
$tar->write($zip_path, COMPRESS_GZIP);
chdir $cur_dir or die;
}
A sample run, as well as various checks, are in the spoiler:
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.