The find routine of File::Find traverses a file tree (recurses through the 
subdirectories as well). Try out the following
piece of code
use strict;
use File::Find;
find (sub {print "$File::Find::name\n";}, $yourdirname);

This should print all the files and subdirectories within $yourdirname to the standard 
output.

hth,
Sudarsan


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to