Will the following code create a new file if the original is missing?
#### If file does not exist, create a new file
if (!-e $fh) {
open (FILE, ">$fh");
print FILE "n";
close (FILE);}
Will the following code create a new file if the original is missing?
#### If file does not exist, create a new file
if (!-e $fh) {
open (FILE, ">$fh");
print FILE "n";
close (FILE);}