Help for this page

Select Code to Download


  1. or download this
    $ perl -le'use File::Copy qw( Copy ); print "ok"'
    "Copy" is not exported by the File::Copy module
    ...
    
    $ perl -le'use File::Copy qw( copy ); print "ok"'
    ok
    
  2. or download this
    ...
    my $dirpath=...
    ...
    ...
    }
    ...