Is there readily available functionality for Java to create a folder hierarchy on a remote FTP server. Apache Commons does provide an FTP client, but I can't find a method for creating a directory hierarchy. It does allow for creating a single directory (makeDirectory), but creating an entire path does not seem to be in there. The reason I want this is because sometimes part of a directory hierarchy is not (yet) available and in such a case I want to create the missing part of the hierarchy and then change to that newly created directory.
|
You have to use a combination of You need to recursively walk the directory tree in the manner described above at each level create the directory as required. |
|||
|
|
Needed the answer to this and so I implemented and tested some code to create directories as needed. Hope this helps someone. cheers! Aaron
|
|||
|
|
|
Why can't you use the FTPClient#makeDirectory() method to build the hierarchy, one folder at a time? |
|||
|
|
|
Apache Commons VFS (Virtual File System) can access several different filesystems (FTP among them), and it also provides a createFolder method that is able to create parent directories if needed: http://commons.apache.org/vfs/apidocs/org/apache/commons/vfs/FileObject.html#createFolder%28%29 Documentation states that method "creates this folder, if it does not exist. Also creates any ancestor folders which do not exist. This method does nothing if the folder already exists." This may suit your needs. |
|||
|