in reply to Re: Perl file operations
in thread Perl file operations
While I don't have a directory with 60,000 files in it to test your code I would guess that <*.txt> is creating such a large list that it runs out of memory.
At an estimate of 64 bytes of overhead per SV, 60,000 strings produced by that list will take up 3.6 megabytes of memory, not counting the lengths of the filenames.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl file operations
by SkullOne (Acolyte) on Feb 23, 2008 at 05:54 UTC | |
by zshzn (Hermit) on Feb 23, 2008 at 21:41 UTC |