if (!FTPReply.isPositiveCompletion(code)) {
ftp.disconnect();
throw new ConnectionRefusedException(code);
}
if (!ftp.login(getUsername(), getPassword())) {
ftp.disconnect();
throw new ConnectionRefusedException(ftp.getReplyCode());
}
if (isBinaryMode()) {
ftp.setFileType(FTP.BINARY_FILE_TYPE);
}