How can I get a tree of all the files from a current folder in Java?
|
|
Not sure how you want to represent the tree? Anyway here's an example which scans the entire subtree using recursion. Files and directories are treated alike. Note that listFiles() returns null for non-directories.
|
||||||
|
|
|
It displays indistinctly files and folders. See the methods in File class to order them or avoid directory print etc. |
||||||||||
|
|
|
Check out Apache Commons FileUtils (listFiles, iterateFiles, etc.). Nice convenience methods for doing what you want and also applying filters. http://commons.apache.org/io/api-1.4/org/apache/commons/io/FileUtils.html |
||
|
|
|
|
In JDK7, "more NIO features" should have methods to apply the visitor pattern over a file tree or just the immediate contents of a directory - no need to find all the files in a potentially huge directory before iterating over them. |
||
|
|
|
|
You can also use the
|
||
|
|
