vote up 4 vote down star
1

What is the best way in Perl to copy files to a yet to be created destination directory tree?

Something like

copy("test.txt","tardir/dest1/dest2/text.txt");

wont work since the directory tardir/dest1/dest2 does not yet exist.

What is the best way to copy with directory creation in Perl?

flag

4 Answers

vote up 17 vote down check
use File::Path;
use File::Copy;

my $path = "tardir/dest1/dest2/";
my $file = "test.txt";

if (! -d $path)
{
  mkpath($path) or die "Failed to create $path: $!\n";
}

copy($file,$path) or die "Failed to copy $file: $!\n";
link|flag
File::Path::mkpath throws an exception on error so your "or die" isn't correct. – ysth Oct 24 '08 at 5:30
vote up 4 vote down
use File::Basename qw/dirname/;
use File::Copy;

sub mkdir_recursive {
    my $path = shift;
    mkdir_recursive(dirname($path)) if not -d dirname($path);
    mkdir $path or die "Could not make dir $path: $!" if not -d $path;
    return;
}

sub mkdir_and_copy {
    my ($from, $to) = @_;
    mkdir_recursive(dirname($to));
    copy($from, $to) or die "Couldn't copy: $!";
    return;
}
link|flag
Why is this downvoted? – Leon Timmermans Oct 23 '08 at 11:42
I can't vote, but I guess because you didn't use File::Path::mkpath. – Corion Oct 23 '08 at 11:51
Since when is that a reason to downvote someone? If it were a core module I would understand (and agree), but that's not the case. Downvoting is for incorrect or stupid solutions, mine is neither. – Leon Timmermans Oct 23 '08 at 11:58
Beats me. Perhaps because you're hand-rolling directory traversal? Here, have a ++ from me :) – dland Oct 23 '08 at 12:58
According to corelist File::Path has been part of the core since 5.001. – Michael Carman Oct 23 '08 at 13:05
show 6 more comments
vote up 4 vote down

File::Copy::Recursive::fcopy() is non-core but combines the File::Path::mkpath() and File::Copy::copy() solution into something even shorter, and preserves permissions unlike File::Copy. It also contains other nifty utility functions.

link|flag
vote up 0 vote down

See the other answers for doing the copying, but for creating the directory Path::Class is very nice to use:

use Path::Class;

my $destination_file  = file('tardir/dest1/dest2/test.txt');
$destination_file->dir->mkpath;

# ... do the copying here
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.