Help for this page

Select Code to Download


  1. or download this
    my $dir = "F:/images";
    my $image = 'swim.jpg';
    ...
    else {
        print "No image doesn't exist\n";
    }
    
  2. or download this
    if ($image and -e $file) {
        # printed even if $image is '' or undef
    ...
    else {
        print "No image doesn't exist\n";
    }