Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Navigating and Reading Directories (today)

by Anonymous Monk
on Apr 23, 2015 at 11:06 UTC ( [id://1124379]=note: print w/replies, xml ) Need Help??


in reply to Navigating and Reading Directories

In today, reading directories is easier with Path::Tiny

#!/usr/bin/perl -- use strict; use warnings; use Path::Tiny qw/ path cwd /; my $dir = cwd(); my @files = path( $dir )->children; my @perlFiles = path( $dir )->children( qr/\.pl$/i ); for my $pl ( @perlFiles ){ print "$pl\n"; }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (4)
As of 2024-04-19 20:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found