Closing the Filehandle : close « File « Perl






Closing the Filehandle

    

#Format:

#close (FILEHANDLE);
#close FILEHANDLE;

open(INFILE, "datebook");
close(INFILE);

   
    
    
    
  








Related examples in the same category

1.When you're done with a file, call close