in reply to Re: File::Find redux: how to limit hits?
in thread File::Find redux: how to limit hits?
#! /usr/bin/perl -w use strict; use File::Find; my @hits = (); my $hit_lim = shift || 20; find( sub { if( scalar @hits >= $hit_lim ) { $File::Find::prune = 1; return; } elsif( -d $_ ) { return; } push @hits, $File::Find::name; }, shift || '.' ); $, = "\n"; print @hits, "\n";
The only problem is that you don't have much control over the order in which File::Find descends through the various directories. (Hint: it is not alphabetical).
|
|---|