}
}
private FTPClient getClient() throws SocketException, IOException {
FTPClient ftp = new FTPClient();
ftp.addProtocolCommandListener(new PrintCommandListener(
new PrintWriter(System.out)));
ftp.setDefaultPort(getPort());
ftp.connect(getIp());
int reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {