I have a array of strings which look similar to:
"folder1/filea/x1.png", "folder1/fileb/x2.png", "folder2/folder3/filec/x3.png" .....
And my goal is to create a drilldown menu like: http://iwantaneff.in/repo/plugins/menu-nav/drill.down/index.html
In rails I have tried using the group_by method, but had no luck. essentially I need to create a folder structure like
- folder1
- filea
- x1.png
- fileb
- x2.png
- filea
- folder2
and so on.....
Any idea on where to start? I am having major difficulty approaching this problem. I have used the split method on each array so I get an array of arrays, but this does not seem to be getting anywhere. I think I need to use recursion to go through sub-trees?
Answer is simple) use recursion for parsing and inserting data
example of parsing =>
for input
output will be