in reply to return an array from File::Find
Or, you can forget File::Find and use the much superior (IMHO) File::Find::Rule:
use File::Find::Rule; my @files = File::Find::Rule->file->in( "dir", "../another_dir" );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: return an array from File::Find
by CountZero (Bishop) on Mar 30, 2008 at 21:16 UTC |