Tree View

S

Sandeep

hi list,

this is the first time i am posting in the list. i am working to create
a utility that rsyncs the desired folder of the volume to a sepecified
destination. i can get the list of all the folders in a particular
volume. the format i am getting is below
-------Format Begin-----
..
demo
demo/bulkmail
demo/images
demo/images/bulkmail
demo/productivity
demo/webpresence
errors
htmlasp
images
images/defaultlogo
info
info/htmlasp
info/images
info/mew
newsletter
newsletter/newyear05
newsletter/november04
newsletter/october04
newsletter/september04
others
photos
public_html
public_html/menu
-------Format End-----
and the tree structure is
..
|
+---demo
| |
| +--bulkmail
| |
| +--images
| | |
| | +--bulkmail
| |
| |
| +--productivity
|
+---errors
|
|
+---htmlasp
|
|
+---images
| |
| +--defaultlogo
|
+---info
| |
| +--htmlasp
| |
| +--images
| |
| +--mew
|
+---newsletter
| |
| +--september04
| |
| +--october04
| |
| +--november04
| |
| +--newyear05
|
+---others
|
|
+---photos
|
|
+---public_html
|
+---menu


what is the best way to get the tree structure ?? is there any module
available on CPAN that provides this functionallity.

Thanks

Sandeep
 
J

John W. Krahn

Sandeep said:
this is the first time i am posting in the list. i am working to create
a utility that rsyncs the desired folder of the volume to a sepecified
destination. i can get the list of all the folders in a particular
volume. the format i am getting is below
-------Format Begin-----
.
demo
demo/bulkmail
demo/images
demo/images/bulkmail
demo/productivity
demo/webpresence
errors
htmlasp
images
images/defaultlogo
info
info/htmlasp
info/images
info/mew
newsletter
newsletter/newyear05
newsletter/november04
newsletter/october04
newsletter/september04
others
photos
public_html
public_html/menu
-------Format End-----
and the tree structure is
.
|
+---demo
| |
| +--bulkmail
| |
| +--images
| | |
| | +--bulkmail
| |
| |
| +--productivity
|
+---errors
|
|
+---htmlasp
|
|
+---images
| |
| +--defaultlogo
|
+---info
| |
| +--htmlasp
| |
| +--images
| |
| +--mew
|
+---newsletter
| |
| +--september04
| |
| +--october04
| |
| +--november04
| |
| +--newyear05
|
+---others
|
|
+---photos
|
|
+---public_html
|
+---menu


what is the best way to get the tree structure ?? is there any module
available on CPAN that provides this functionallity.

This is close to what say you want:

$ echo ".
demo
demo/bulkmail
demo/images
demo/images/bulkmail
demo/productivity
demo/webpresence
errors
htmlasp
images
images/defaultlogo
info
info/htmlasp
info/images
info/mew
newsletter
newsletter/newyear05
newsletter/november04
newsletter/october04
newsletter/september04
others
photos
public_html
public_html/menu" | \
perl -F/ -ane'print 1..1?$_:"| "x@F.$/."| "x$#F."+--$F[-1]"'
..
|
+--demo
| |
| +--bulkmail
| |
| +--images
| | |
| | +--bulkmail
| |
| +--productivity
| |
| +--webpresence
|
+--errors
|
+--htmlasp
|
+--images
| |
| +--defaultlogo
|
+--info
| |
| +--htmlasp
| |
| +--images
| |
| +--mew
|
+--newsletter
| |
| +--newyear05
| |
| +--november04
| |
| +--october04
| |
| +--september04
|
+--others
|
+--photos
|
+--public_html
| |
| +--menu


HTH

John
 
S

Sandeep

thanks john, that was indeed helpful, thanks a lot. can you suggest
some book that gives a deep insight of perl regular expressions

thanks again

Sandeep
 
D

David H. Adler

thanks john, that was indeed helpful, thanks a lot. can you suggest
some book that gives a deep insight of perl regular expressions

If you really want deep insight into regular expressions, you want
Jeffrey Friedle's "Mastering Reguar Expressions", now in its second
edition from O'Reilly (http://www.oreilly.com/catalog/regex2/).

It's not exclusively perl, but it is probably the most detailed book on
regular expressions you'll ever see.

dha
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,008
Latest member
HaroldDark

Latest Threads

Top