Having never looked at the code, but, applying a little logic to the problem I would ask if there is a Fileset class and if that class has an addFile method? Then you should be able to see how to make a Fileset instance and add File objects to it. Have you tried looking at the API doc to see if you can find the Fileset class and go from there?
HTH Bill -----Original Message----- From: Karthik [mailto:[EMAIL PROTECTED] Sent: Sunday, March 05, 2006 10:20 PM To: user@ant.apache.org Subject: ANT FTP TASK Hi form I found this piece of code on the web and am struck with the API 1)Would like to know how to add files to "addFileSet" for thr code below. public void setCopXinTask(String fromSrc,String toDirName) { Project project = createProject(); FTP ftp = new FTP(); ftp.setServer("192.168.150.120"); ftp.setRemotedir("/home/projectt/karthik"); ftp.setPort(22); ftp.setUserid("projectt"); ftp.setPassword("abc1234"); //?? how to add files from source to filset ftp.addFileset( ???? ); ftp.execute(); } Please somebody help me with regards Karthik --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]