I've got the excerpts of my code below which never prints out the last line.
Any ideas please anyone?
FTPClient backup = new FTPClient();
backup.setRemoteHost(tftpHost);
backup.connect();
backup.login(pc.getUserName(), pc.getPassword());
backup.setConnectMode(FTPConnectMode.PASV);
backup.setType(FTPTransferType.BINARY);
backup.mkdir(fname);
backup.chdir(fname);
backup.put("test","test");
backup.quit();
System.out.println("are we done?");