Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: listing all subdirectories of directory into file

by anazawa (Scribe)
on May 26, 2012 at 02:01 UTC ( [id://972556]=note: print w/replies, xml ) Need Help??


in reply to listing all subdirectories of directory into file

If you're familiar with Path::Class, I recommend for you to use Path::Class::Dir->recurse(). Create a Path::Class::Dir object as follows:
use Path::Class qw/dir/; my $dir = dir( 'basedir' ); # platform-neutral syntax
Once you create the object, use recurse() method:
my @plain_files; $dir->recurse(callback => sub { my $file = shift; # Path::Class object return if $file->is_dir; push @plain_files, $file; });
recurse() is similar to File::Find module. If you use recurse(), you can handle Path::Class::File objects in the callback subroutine.

UPDATE: Corrected my typo ( recruse -> recurse ). Thanks to jdrago999. In addition, I noticed $file may be a Path::Class::Dir object, and so simplified my comment in the code example ( "Path::Class::File object" -> "Path::Class object" ).

Replies are listed 'Best First'.
Re^2: listing all subdirectories of directory into file
by jdrago999 (Pilgrim) on Jun 08, 2012 at 17:20 UTC

    You've got a typo (recruse vs recurse) in your code example.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://972556]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-03-29 14:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found