Hi,
I am using Ant 1.6.2 to FTP files from unix server to local windows folder.
following is my code,
public static void getFiles(String ftpServer, String user, String pwd, String fileName){
try{
FTP ftpclient = new FTP();
FileSet fs = new FileSet();
File destination = new...