in reply to Re^3: renaming 1000's of FASTA files
in thread renaming 1000's of FASTA files
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; };
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: renaming 1000's of FASTA files
by armstd (Friar) on Jul 13, 2011 at 14:26 UTC |