Uses of Class
com.enterprisedt.net.ftp.FTPException

Packages that use FTPException
com.enterprisedt.net.ftp   
 

Uses of FTPException in com.enterprisedt.net.ftp
 

Methods in com.enterprisedt.net.ftp that throw FTPException
 void FTPClient.login(java.lang.String user, java.lang.String password)
          Login into an account on the FTP server.
 void FTPClient.user(java.lang.String user)
          Supply the user name to log into an account on the FTP server.
 void FTPClient.password(java.lang.String password)
          Supplies the password for a previously supplied username to log into the FTP server.
 void FTPClient.quote(java.lang.String command, java.lang.String[] validCodes)
          Issue arbitrary ftp commands to the FTP server.
 void FTPClient.put(java.lang.String localPath, java.lang.String remoteFile)
          Put a local file onto the FTP server.
 void FTPClient.put(java.lang.String localPath, java.lang.String remoteFile, boolean append)
          Put a local file onto the FTP server.
 void FTPClient.put(byte[] bytes, java.lang.String remoteFile)
          Put data onto the FTP server.
 void FTPClient.put(byte[] bytes, java.lang.String remoteFile, boolean append)
          Put data onto the FTP server.
 void FTPClient.get(java.lang.String localPath, java.lang.String remoteFile)
          Get data from the FTP server.
 byte[] FTPClient.get(java.lang.String remoteFile)
          Get data from the FTP server.
 boolean FTPClient.site(java.lang.String command)
          Run a site-specific command on the server.
 java.lang.String FTPClient.list(java.lang.String mask)
          Deprecated. As of FTP 1.1, replaced by FTPClient.dir(String)
 java.lang.String FTPClient.list(java.lang.String mask, boolean full)
          Deprecated. As of FTP 1.1, replaced by FTPClient.dir(String,boolean)
 java.lang.String[] FTPClient.dir(java.lang.String mask)
          List a directory's contents as an array of strings of filenames.
 java.lang.String[] FTPClient.dir(java.lang.String mask, boolean full)
          List a directory's contents as an array of strings.
 void FTPClient.setType(FTPTransferType type)
          Set the transfer type
 void FTPClient.delete(java.lang.String remoteFile)
          Delete the specified remote file
 void FTPClient.rename(java.lang.String from, java.lang.String to)
          Rename a file or directory
 void FTPClient.rmdir(java.lang.String dir)
          Delete the specified remote working directory
 void FTPClient.mkdir(java.lang.String dir)
          Create the specified remote working directory
 void FTPClient.chdir(java.lang.String dir)
          Change the remote working directory to that supplied
 java.lang.String FTPClient.pwd()
          Get the current remote working directory
 java.lang.String FTPClient.system()
          Get the type of the OS at the server
 void FTPClient.quit()
          Quit the FTP session
 

Constructors in com.enterprisedt.net.ftp that throw FTPException
FTPControlSocket(java.lang.String remoteHost)
          Constructor.
FTPControlSocket(java.lang.String remoteHost, int controlPort)
          Constructor.
FTPControlSocket(java.net.InetAddress remoteAddr)
          Constructor.
FTPControlSocket(java.net.InetAddress remoteAddr, int controlPort)
          Constructor.
FTPClient(java.lang.String remoteHost)
          Constructor.
FTPClient(java.lang.String remoteHost, int controlPort)
          Constructor.
FTPClient(java.net.InetAddress remoteAddr)
          Constructor.
FTPClient(java.net.InetAddress remoteAddr, int controlPort)
          Constructor.
 



Copyright (c) 2001 Enterprise Distributed Technologies Ltd. All Rights Reserved.