Beefy Boxes and Bandwidth Generously Provided by pair Networks Ovid
laziness, impatience, and hubris
 
PerlMonks  

Re^3: Directory Tree Structure

by marto (Cardinal)
on Oct 21, 2005 at 06:42 UTC ( [id://501951]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re^2: Directory Tree Structure
in thread Directory Tree Structure

Hi rupesh,

"Each subdirectory's subdirectories (confusing, but doable)
..recuresively (uh..uh)"

Are you having difficulty doing this recursively?
As a little example look at this code below:
#!/usr/bin/perl use strict; use warnings; use File::Find; my $TargetPath = $ARGV[0]; find (\&ProcessTree,$TargetPath); sub ProcessTree { print "Directory: $File::Find::name\n" if -d; print "File: $File::Find::name\n" unless -d; }

Call this script with the path you want to traverse as an argument.
Are you planning on using the HTML::Template module?
I hope the above example has given you an idea of how to tackle this.
Let me know how you get on.

Martin

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://501951]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.