Help for this page

Select Code to Download


  1. or download this
    #! /usr/bin/perl -W
    use File::Copy::Recursive qw (dircopy);
    ...
    else
        { print " The File does not Exist \n";
        }
    
  2. or download this
    #! /usr/bin/perl -W
    use File::Copy::Recursive qw (dircopy);
    ...
    chomp($Destination);
    print "copying $Source to $Destination \n";
    dircopy("$Source","$Destination") or die "File cannot be copied.";