
Dackup::Target::Filesystem - Flexible file backup to/from the filesystem

use Dackup;
my $source = Dackup::Target::Filesystem->new(
prefix => '/home/acme/important/' );
my $destination = Dackup::Target::Filesystem->new(
prefix => '/home/acme/backup/' );
my $dackup = Dackup->new(
source => $source,
destination => $destination,
delete => 0,
);
$dackup->backup;

This is a Dackup target for the filesystem.

Leon Brocard <acme@astray.com>

Copyright (C) 2009, Leon Brocard.

This module is free software; you can redistribute it or modify it under the same terms as Perl itself.