Tagged Questions
The directory-tree tag has no wiki summary.
15
votes
4answers
3k views
Storing Directory Hierarchy in a Key-Value Data store?
What is a clean/efficient method for storing the directory Hierarchy/tree in a Key-Value database (in my case MongoDB but any of them).
For example a tree structure
- Cars
+ Audi
+ BMW
...
3
votes
2answers
1k views
PHP SPL RecursiveDirectoryIterator RecursiveIteratorIterator retrieving the full tree
how can i retrieve the full directory tree using SPL ?
0
votes
4answers
165 views
how can this src vs. build tree timestamp comparison be faster? (bash)
for n in `cd src; find . -name "*.java"; cd -`;
do a=`echo $n | cut -d '.' -f2`;
if [[ src/$a.java -nt build/$a.class ]];
then echo src/$a.java;
fi;
done
It lists all the java files in the ...
0
votes
2answers
71 views
Getting a directory tree with Jabaco?
Given that Jabaco is VB-alike on the surface but Java underneath, can any suggest how to get a directory tree? I think it's got something to do with DirSearch() but as I have no background in Java, I ...