directory tree
Hello, I am making an application in which there has to be a panel containing the directory tree of a drive. So far the only way I have figured out to do that is by using the tree classes of swing, but the thing is that these classes are too general so I have to write the code for traversing through the drive and declare the directories, subdirectories,files(leafs) etc. So I was feeling like reinventing the wheel, I mean aren't there any existing classes to do that, represent graphically the directory tree? Thank you.

