How can I get list all the files within a folder recursively 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 File.listFiles() returns null for non-directories.
Java 7 offers a couple of improvements. For example, DirectoryStream provides one result at a time - the caller no longer has to wait for all I/O operations to complete before acting. This allows incremental GUI updates, early cancellation, etc.
Note that the dreaded null return value has been replaced by IOException. Java 7 also offers a tree walker:
|
|||||||||
|
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 |
|||||||||
|
|
You can also use the
|
|||
|
|
|
Visualizing the tree structure was the most convenient way for me :
|
|||
|
|
|
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. |
|||
|
|
Here dir is Directory to be scanned. e.g c:\ |
|||
|
|