在 Java 中通过 FTP 创建文件夹层次结构

2022-09-03 08:34:44

Java 是否有现成的功能在远程 FTP 服务器上创建文件夹层次结构。Apache Commons确实提供了一个FTP客户端,但我找不到创建目录层次结构的方法。它确实允许创建单个目录(makeDirectory),但创建整个路径似乎并不在其中。我想要这样做的原因是,有时目录层次结构的一部分(尚未)可用,在这种情况下,我想创建层次结构的缺失部分,然后更改为新创建的目录。


答案 1

需要这个问题的答案,所以我实现并测试了一些代码来根据需要创建目录。希望这有助于某人。干杯!亚伦

/**
* utility to create an arbitrary directory hierarchy on the remote ftp server 
* @param client
* @param dirTree  the directory tree only delimited with / chars.  No file name!
* @throws Exception
*/
private static void ftpCreateDirectoryTree( FTPClient client, String dirTree ) throws IOException {

  boolean dirExists = true;

  //tokenize the string and attempt to change into each directory level.  If you cannot, then start creating.
  String[] directories = dirTree.split("/");
  for (String dir : directories ) {
    if (!dir.isEmpty() ) {
      if (dirExists) {
        dirExists = client.changeWorkingDirectory(dir);
      }
      if (!dirExists) {
        if (!client.makeDirectory(dir)) {
          throw new IOException("Unable to create remote directory '" + dir + "'.  error='" + client.getReplyString()+"'");
        }
        if (!client.changeWorkingDirectory(dir)) {
          throw new IOException("Unable to change into newly created remote directory '" + dir + "'.  error='" + client.getReplyString()+"'");
        }
      }
    }
  }     
}

答案 2

您必须使用FTPClient.changeWorkingDirectory的组合来确定该目录是否存在,然后FTPClient.makeDirectory如果对FTPClient.changeWorkingDirectory的调用返回false

您需要按照上述方式以递归方式遍历目录树,在每个级别根据需要创建目录。


推荐