为什么分离器会通过PATH PARRT PATH = paths.get(符号)更改



在我的Windows应用程序中,我想使用SimpleFileVisitor<Path>在FTP上删除服务器上的目录结构。它失败了"未找到文件",因为在分离器下方的代码中,将其更改为BackSlash。显然,服务器希望它可以向前砍伐。我该如何使其保持前进?

public class FTPTest {
static String server ;
static int port ;
static String user ;
static String pass; 
static FTPClient theFtpClient;
public FTPTest(){
    server = "nx.dnslinks.net";
    port = 21;
    user = "xxxx";
    pass = "#xxxxx"; 
    theFtpClient = new FTPClient();
}
static void deleteDirectoryWalkTree(Path path) throws IOException {
FileVisitor visitor = new SimpleFileVisitor<Path>() {
    @Override
    public FileVisitResult visitFile(Path file, BasicFileAttributes attrs) throws IOException {
      Files.delete(file);
      return FileVisitResult.CONTINUE;
    }
    @Override
    public FileVisitResult visitFileFailed(Path file, IOException exc) throws IOException {
      Files.delete(file);
      return FileVisitResult.CONTINUE;
    }
    @Override
    public FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
      if (exc != null) {
        throw exc;
      }
      Files.delete(dir);
      return FileVisitResult.CONTINUE;
    }
};
    Files.walkFileTree(path, visitor);
}    
public static void main(String[] args) {
    FTPTest     theFTPTest = new FTPTest();
    Path Path = Paths.get("/httpdocs/manual-uploads/TestingFTPUtil/SubDir_1/SubDir_2");
    try {
        theFTPTest.deleteDirectoryWalkTree(Path);
    } catch (IOException ex) {
        Logger.getLogger(FTPTest.class.getName()).log(Level.SEVERE, null, ex);
    }
}

}

Path/Paths类是将您的代码从 local 操作系统的路径语法中分离出来。

当您想使用远程 ftp系统的路径时,该系统可能会(确实(使用其他语法。主要是相同的语法,无论您的代码碰巧运行哪个本地操作系统。

因此,您不应将Path/Paths类用于FTP路径。

相关内容

  • 没有找到相关文章

最新更新