Help for this page

Select Code to Download


  1. or download this
    # Scenario 1, example of the problem: 
    my $is_file_exists = 1;
    ...
        print "The file doesn't exist\n";
        $is_file_exists = 0;
    }
    
  2. or download this
    # Scenario 2, example of workaround that solves the problem: 
    my $is_file_exists = 1;
    ...
        print "The file doesn't exist\n";
        $is_file_exists = 0;
    }