Hello everybody,
I start to learn Perl just a few days ago and i would like to reproduce the tree structure of an hard drive into a hash list.
What i think is something like this :
rep1 ---fic1 which will give : { "rep1" => { "fic1",
fic2 "fic2", "srep11" => {"fic3"}},
srep11 "rep2" => {"fic4",
fic3 "srep21" => {"fic4}}}
rep2 ---fic4
srep21
fic4
Is there a module which can help me to obtain this ?
I will use the hash table first to transform some of the file names and after to produce some basic html page with a
<table> fill with the content of the hash table.
Thanks for your suggestions
I start to learn Perl just a few days ago and i would like to reproduce the tree structure of an hard drive into a hash list.
What i think is something like this :
rep1 ---fic1 which will give : { "rep1" => { "fic1",
fic2 "fic2", "srep11" => {"fic3"}},
srep11 "rep2" => {"fic4",
fic3 "srep21" => {"fic4}}}
rep2 ---fic4
srep21
fic4
Is there a module which can help me to obtain this ?
I will use the hash table first to transform some of the file names and after to produce some basic html page with a
<table> fill with the content of the hash table.
Thanks for your suggestions