I'm trying to download all files available in a directory through FTPClient.
The following line is = ftpClient.retrieveFileStream(imageName); returns null, sometimes...
The reply string is: 500 - Unknown Command. Weird..
If I receive null and I try to re-execute the command right away, everything works fine..
Am I doing anything wrong here?
Code:
FTPClient ftpClient = new FTPClient();
ftpClient.setDefaultTimeout(10000);
ftpClient.connect(hostname);
ftpClient.setSoTimeout(50000);
ftpClient.setDataTimeout(30000);
ftpClient.login(username, password);
ftpClient.changeWorkingDirectory(workingDirectory);
String[] names = ftpClient.listNames();
int downloadedImages = 0;
InputStream is = null;
for(int i=names.length-1; i>=0; i--) {
String imageName = names[i];
is = ftpClient.retrieveFileStream(imageName);
saveInputStreamToFile(is, baseFolder, imageName);
ftpClient.completePendingCommand();
}
if(is!=null)
is.close();
ftpClient.disconnect();
Thanks!
String[] names = ftpClient.listNames();as well... – Gevorg Sep 13 '11 at 18:41