Help for this page

Select Code to Download


  1. or download this
    my $file = 'C:\ppp.txt';
    print "file '$file' ";
    ...
        print q!doesn't exist!;
    }
    print "\n";
    
  2. or download this
    my $file = 'C:/ppp.txt';
    print "file '$file' ";
    ...
            ... (either create it or print error message)
    }
    print "\n";