in reply to using File::Find for reading files in order
find( { preprocess => sub { sort { $a <=> $b || $a cmp $b } @_ }, wanted => sub { next if /^\.+$/...} }, $dir );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: using File::Find for reading files in order
by grinder (Bishop) on Feb 04, 2009 at 07:27 UTC | |
|
Re^2: using File::Find for reading files in order
by Ashes.cfg (Initiate) on Feb 04, 2009 at 06:57 UTC |