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