我无法使用 FTPClient 获得确切的文件列表。示例代码如下:
FTPClient client = new FTPClient();
client.connect("x.x.x.x");
client.login("abcd", "abcd");
FTPFile[] ftpFiles = client.listFiles();
for (FTPFile ftpFile : ftpFiles) {
System.out.println("FTPFile: " + ftpFile.getName());
}
我尝试使用 enterLocalPassiveMode()/enterRemotePassiveMode()/pasv() 设置为 PASV 模式。但是,它不起作用。
另请检查Apache Commons FTPClient.listFiles ..
谢谢