I've a list of paths like this
/mnt/sdcard/folder1/a/b/file1
/mnt/sdcard/folder1/a/b/file2
/mnt/sdcard/folder1/a/b/file3
/mnt/sdcard/folder1/a/b/file4
/mnt/sdcard/folder1/a/b/file5
/mnt/sdcard/folder1/e/c/file6
/mnt/sdcard/folder2/d/file7
/mnt/sdcard/folder2/d/file8
/mnt/sdcard/file9
So from this list of paths (Stings) I need to crete a Java Tree structure that has folders as nodes and files as leaf (there wont be empty folders as leaf).
What I need I think is the add method where I pass to them a String (path of the file) and it add it to the correct place in the tree creating correct nodes (Folder) if they are not already there
This tree structure will need me to get list of nodes when I'm on node and list of leafs (but I think this will be a normal features for trees)
I will always have Strings as paths and not real file or folders. Is there something ready to use or a source code to start?
Thank you very much.
I implemented a solution to the challenge myself, it is available as a GitHubGist.
I am representing each node of a filesystem-hierarchy in a DirectoryNode. A helper-method createDirectoryTree(String[] filesystemList) creates a direcotry-tree.
Here is the usage example, which is included in the GitHubGist.
The System.out.println -output is:
I would recommend reading up on data structures, particularly trees. In Java, you can represent these by creating a node class that has references to other nodes. For example:
Obviously, you can store your node references anyway you like- arrays or collections will work with non-binary trees.
Given your list of files, you can read these and populate your tree structure.
Seems like you could adapt either a Trie / Radix Trie or a Binary Search Tree to work in either situation. You could augment a Trie to store "folders" as the inner nodes (instead of characters like in a regular Trie) or you could augment a Binary Search Tree to store "folders" as inner nodes (as long as they implement a comparable interface) and "files" as leaf nodes.
My implementation of those structures are linked in the text above.
Thank you for all your answer. I made my working implementation. I think that I will need to improve it in order to make it works better with more caching in adding element to the tree structure.
As I said what I was needing was a structure that allow me to have a "virtual" rappresentation of a FS.
MXMTree.java
MXMNode.java
Test.java for test code
Please tell me if you have some good advice about improvments :)
Have a look in new Java 7 - nio2 package. All you need is inside.