in reply to Re: Re: Re: Efficient processing of large directory
in thread Efficient processing of large directory
This will only read a single file at a time and has no need to create huge lists.while(my $x = <*.*>) { do_stuff($x); }
|
---|
Replies are listed 'Best First'. | |
---|---|
•Re: Re: Re: Re: Re: Efficient processing of large directory
by merlyn (Sage) on Oct 02, 2003 at 18:54 UTC | |
Re5: Efficient processing of large directory
by dragonchild (Archbishop) on Oct 02, 2003 at 17:53 UTC |