Help for this page

Select Code to Download


  1. or download this
    open (REPORTFILE,">>$folder\\$reportfile")...
    
  2. or download this
    open my $reportfile, ...
    
  3. or download this
    print $reportfile "TAG HIERARCHY REPORT\n";
    
  4. or download this
    open my $resultfile, '>>', $filepath...
    
  5. or download this
    my $filepath = File::Spec->catfile($folder, $reportfile);
    open my $reportfile, '>>', $filepath ...;
    
  6. or download this
    my $filepath = File::Spec->catfile($folder, $reportfile);
    open my $reportfile, '>>', $filepath
       or die "open('$filepath') for appending: $!";