• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Specified file not found

 
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am using org.apache.commons.net library for ftpclient.When I try to access the directory in the ftp server I get the 550:The specified file not error.But that file is there in the ftp server.
The code written is given below:

package com.ftp;

import java.io.IOException;

import org.apache.commons.net.ftp.DefaultFTPFileListParser;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPFileEntryParser;
import org.apache.commons.net.ftp.FTPFileEntryParserImpl;
import org.apache.commons.net.ftp.FTPFileList;
import org.apache.commons.net.ftp.FTPListParseEngine;
import org.apache.commons.net.ftp.parser.CompositeFileEntryParser;
import org.apache.commons.net.ftp.parser.DefaultFTPFileEntryParserFactory;
import org.apache.commons.net.ftp.parser.FTPFileEntryParserFactory;
import org.apache.commons.net.ftp.parser.VMSFTPEntryParser;



public class FtpCrawler {

static FTPClient ftp=new FTPClient();
public static void main(String[] args) {
try {

String server="10.16.56.216";

String directory="/lib/account lib/";
ftp.connect(server);
ftp.login(args[0],args[1]);
FTPFile[] files=ftp.listFiles(directory);

for(int i=0;i<files.length;i++){

}


System.out.println("Connected to " + server + ".");
System.out.print(ftp.getReplyString());






ftp.disconnect();

} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}


}
 
reply
    Bookmark Topic Watch Topic
  • New Topic