im using the latest version to download files from a server to my machine (Windows 98) the files are copied alright, however i got this message :Failed to calculate version: For input string: "@major_ver@"What does it mean?
FTPClient client = new FTPClient(url); client.login(username, password) ; String[] dirList = client.dir(); for(int i=0; i<dirList.length; i++) { client.get(localDir+"/"+dirList[i], dirList[i]); client.delete(dirList[i]); } client.quit();