Publisher's description
File::RsyncP::FileIO is a Perl module that contains all of the file system access functions needed by File::RsyncP. This functionality is relegated to this module so it can be subclassed or replaced by different code for applications where an rsync interface is provided for non-file system data (eg: databases).SYNOPSIS use File::RsyncP::FileIO; my $rs = File::RsyncP->new({ logLevel => 1, rsyncCmd => ["/bin/rsh", $host, "-l", $user, "/bin/rsync"], rsyncArgs => [qw( --numeric-ids --perms --owner --group --devices --links --ignore-times --block-size=700 --relative --recursive -v )], logHandler => sub { my($str) = @_; print MyHandler "log: $str "; }; fio => File::RsyncP::FileIO->new({ logLevel => 1, }); }); Requirements: · Perl