http://qs321.pair.com?node_id=913716


in reply to Re^2: renaming 1000's of FASTA files
in thread renaming 1000's of FASTA files

But I don't see what bugs closing a file prevents

Running out of file descriptors?

$ cat /proc/sys/fs/file-max 386943

citromatik

Replies are listed 'Best First'.
Re^4: renaming 1000's of FASTA files
by Corion (Patriarch) on Jul 11, 2011 at 16:18 UTC

    But that's only an issue if you keep the filehandles around, isn't it? You can open lots and lots of files without an explicit close() and I'm not sure where explicitly closing files is better than just having the filehandle get re-opened or fall out of scope:

    for (1..100000) { open my $fh, $0; };

      I like explicit closes. I like explicit lots of things that Perl auto-does if given a chance.

      On the maintainability front, an explicit close() tells the maintainer that the author "meant to do that" and "here". No explicit close leaves questions. Did they mean to let it close automagically, or did they leave out the close where they really wanted it, etc.

      I rarely have the luxury of working with expert Perl programmers. The more that's done explicitly and clearly, the better for everyone involved.

      --Dave