我目前正在使用 Java FTP 库 (ftp4j) 来访问 FTP 服务器。我想为服务器做一个文件计数和目录计数,但这意味着我需要在目录中的目录中列出目录中的文件,等等。
这是如何实现的?任何提示将不胜感激。
从代码中提取:
client = new FTPClient();
try {
client.connect("");
client.login("", "");
client.changeDirectory("/");
FTPFile[] list = client.list();
int totalDIRS = 0;
int totalFILES = 0;
for (FTPFile ftpFile : list) {
if (ftpFile.getType() == FTPFile.TYPE_DIRECTORY) {
totalDIRS++;
}
}
message =
"There are currently " + totalDIRS + " directories within the ROOT directory";
client.disconnect(true);
} catch (Exception e) {
System.out.println(e.toString());
}