Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: Directory Structure.

by pryrt (Abbot)
on Mar 31, 2017 at 15:01 UTC ( [id://1186626]=note: print w/replies, xml ) Need Help??


in reply to Directory Structure.

You've already received good answers. But as an aside, to help clarify your code: hippo's refactoring to foreach my $subdir (@files) implied my suggestion, but I will make it more explicit (and go a little farther): please don't call a list of subdirectories @files, nor an element from that list $file. You'll just confuse anyone else trying to read or sustain your code, and probably yourself in the future, by saying you are changing directory into a file. Use foreach my $subdir ( @subdirs ), or $name ... @names, or $vehicle, or $machine, or $thingamagoob. It's helpful to give the variables names meaningful to the context -- but please, please, whatever you do, don't give it a name that's misleading, confusing, or wrong for the context. Please. :-)

Log In?
Username:
Password:

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

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

    No recent polls found