在我的Windows应用中,我想使用SimpleFileVisitor<Path>
使用FTP删除服务器上的目录结构。它失败并显示“找不到文件”,因为在分隔符下面的代码中将其更改为反斜杠。显然,服务器希望它是正斜杠。我如何使其保持斜线?
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);
}
}
}
答案 0 :(得分:0)
Path
/ Paths
类用于将代码与 local 操作系统的路径语法隔离。
当您要使用远程 FTP系统的路径时,该路径可能(确实)使用不同的语法。而且,无论代码在哪种本地操作系统上运行,基本上都是相同的语法。
因此,请勿将Path
/ Paths
类用于FTP路径。