Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been given an answer in question: Create folders from folder id and parent id in java

It was very useful but I do not understand the last part of the answer:

"Finally, just grab the folder with id 0 and start building your Files on the disk, using folder.getChildren() as a convenient way to move down the tree. Check out the javadoc on the File object, you will particularly want to use the mkdirs() method."

I don't even know where to being to implement it. Does anyone understand it?

Thank You

share|improve this question

1 Answer

up vote 1 down vote accepted

Once your tree of Folder instances has been built, the root of the tree is the Folder with ID 0.

Start with this folder, and create a directory in the file system for each of its children, recursively:

/**
 * Creates a directory in parentDirectory for every child of the given folder,
 * recursively.
 */
public void createDirectoriesForChildren(Folder folder, File parentDirectory) {
    for (Folder childFolder : folder.getChildren()) {
        File directory = new File(parentDirectory, childFolder.getName());
        directory.mkdirs();
        createDirectoriesForChildren(childFolder, directory);
    }
}
share|improve this answer
You have saved my day! Thank you JB! Have a great day! – WookooUK Sep 29 '11 at 14:47
Where about should I place this code? under: for(Folder folder : data.values()) { int parentId = folder.getParentFolderId(); Folder parentFolder = data.get(parentId); if(parentFolder != null) parentFolder.addChildFolder(folder); } or in a new class (called MkDirs and call it with: new MkDirs();? Thanks Again – WookooUK Sep 29 '11 at 15:31
Do what you prefer. It doesn't matter much. Just try to keep methods small, and to give them only one responsibility. – JB Nizet Sep 29 '11 at 16:21
epic, I don not understand your code but am I able to just drop it in at the end without passing it anything? – WookooUK Sep 29 '11 at 16:26
Don't just drop it somewhere. Try to understand it. Read the documentation of the classes and methods it uses. There are just 4 lines, and they should be easy to understand. You need to understand what you're doing if you want to be a developer. – JB Nizet Sep 29 '11 at 16:29
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.