I'd like to do a search for folders/directories from java, and go into those folders/directories in java. I guess it's called system utilities? Any tutorials out there, or books on the subject?
Thanks ;)
|
I'd like to do a search for folders/directories from java, and go into those folders/directories in java. I guess it's called system utilities? Any tutorials out there, or books on the subject? Thanks ;) |
||||
|
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
I use this code to get all ZIP files in a folder. Call this recursively checking for the file object to be a sub directory again and again.
} |
|||||
|
|
You could use Apache Commons FileUtils (see: http://commons.apache.org/io/api-release/org/apache/commons/io/FileUtils.html) and specifically the listFiles method there, which can do this recursively and use filters (so it saves you the writing of the recursion yourself and answers the search you mentioned). |
|||
|
|
|
If you want to navigate the file system, take a look at File and the list() method. You'll most likely require some recursive method to navigate down through the hierarchies. |
|||
|
|
|
I'd recommend Apache Commons IO utilities. |
|||
|
|
|
I don't know of any tutorials or books on that particular subject, but the way to do it is to use the |
|||
|
|
|
I used Apache Commons VFS. Is nice to use it for read contents of a directory, like this:
You can check if children is file, folder or something different with getType(). And same code works for reading ZIP or JAR files, FTP, SFTP, ... just changing the URL of resolveFile as you can see here. |
||||
|
|
|
here is another example:
the same, printing only directories:
|
|||
|
|
|
Good example: http://www.leepoint.net/notes-java/io/10file/20recursivelist.html BTW. I recommend reading the whole thing. http://www.leepoint.net/notes-java/ |
|||
|
|