The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

App::MBUtiny::CopyExclusive - Exclusive copying directories

VERSION

Version 1.00

SYNOPSIS

    use App::MBUtiny::CopyExclusive;
    
    xcopy( "/source/folder", "/destination/folder" )
        or die "Can't copy directory";

    # Copying without foo and bar/baz files/directories
    xcopy( "/source/folder", "/destination/folder", [qw( foo bar/baz )] )
        or die "Can't copy directory";

ABSTRACT

App::MBUtiny::CopyExclusive - Exclusive copying directories for App::MBUtiny

DESCRIPTION

Exclusive copying directories

FUNCTIONS

xcopy
    xcopy( $src_dir, $dst_dir, [ ... exclude rel. paths ... ] );

Copying all objects (files/directories) from $src_dir directory into $dst_dir directory without specified relative paths. The function returns status of work

HISTORY

See CHANGES file

TO DO

See TODO file

BUGS

* none noted

SEE ALSO

perl

AUTHOR

Serz Minus (Lepenkov Sergey) http://www.serzik.com <minus@mail333.com>

COPYRIGHT

Copyright (C) 1998-2014 D&D Corporation. All Rights Reserved

LICENSE

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

See LICENSE file