Help for this page

Select Code to Download


  1. or download this
    unless (-e $ARGV[0])
    {
        print "File does not exist. \n";
    ...
    
    my($copy) = "$ARGV[0].bak";
    copy($ARGV[0], $copy) or die "File cannot be copied. \n";