Uses of Class
it.sauronsoftware.ftp4j.FTPIllegalReplyException

Packages that use FTPIllegalReplyException
it.sauronsoftware.ftp4j FTP client implementation 
 

Uses of FTPIllegalReplyException in it.sauronsoftware.ftp4j
 

Methods in it.sauronsoftware.ftp4j that throw FTPIllegalReplyException
 void FTPClient.abortCurrentDataTransfer(boolean sendAborCommand)
          If there's any ongoing data transfer operation, this method aborts it.
 void FTPClient.changeAccount(java.lang.String account)
          Call this method to switch the user current account.
 void FTPClient.changeDirectory(java.lang.String path)
          This method changes the current working directory.
 void FTPClient.changeDirectoryUp()
          This method changes the current working directory to the parent one.
 java.lang.String[] FTPClient.connect(java.lang.String host)
          This method connects the client to the remote FTP host, using the default port value 21.
 java.lang.String[] FTPClient.connect(java.lang.String host, int port)
          This method connects the client to the remote FTP host.
 void FTPClient.createDirectory(java.lang.String directoryName)
          This method creates a new remote directory in the current working one.
 java.lang.String FTPClient.currentDirectory()
          This method asks and returns the current working directory.
 void FTPClient.deleteDirectory(java.lang.String path)
          This method deletes a remote directory.
 void FTPClient.deleteFile(java.lang.String path)
          This method deletes a remote file.
 void FTPClient.disconnect(boolean sendQuitCommand)
          This method disconnects from the remote server, optionally performing the QUIT procedure.
 void FTPClient.download(java.lang.String remoteFileName, java.io.File localFile)
          This method downloads a remote file from the server to a local file.
 void FTPClient.download(java.lang.String remoteFileName, java.io.File localFile, FTPDataTransferListener listener)
          This method downloads a remote file from the server to a local file.
 void FTPClient.download(java.lang.String remoteFileName, java.io.File localFile, long restartAt)
          This method resumes a download operation from the remote server to a local file.
 void FTPClient.download(java.lang.String remoteFileName, java.io.File localFile, long restartAt, FTPDataTransferListener listener)
          This method resumes a download operation from the remote server to a local file.
 void FTPClient.download(java.lang.String fileName, java.io.OutputStream outputStream, long restartAt, FTPDataTransferListener listener)
          This method resumes a download operation from the remote server.
 long FTPClient.fileSize(java.lang.String path)
          This method asks and returns a file size in bytes.
 java.lang.String[] FTPClient.help()
          This method calls the HELP command on the remote server, returning a list of lines with the help contents.
 FTPFile[] FTPClient.list()
          This method lists the entries of the current working directory parsing the reply to a FTP LIST command.
 java.lang.String[] FTPClient.listNames()
          This method lists the entries of the current working directory with a FTP NLST command.
 void FTPClient.login(java.lang.String username, java.lang.String password)
          This method authenticates the user against the server.
 void FTPClient.login(java.lang.String username, java.lang.String password, java.lang.String account)
          This method authenticates the user against the server.
 void FTPClient.logout()
          This method performs a logout operation for the current user, leaving the connection open, thus it can be used to start a new user session.
 java.util.Date FTPClient.modifiedDate(java.lang.String path)
          This method asks and returns the last modification date of a file or directory.
 void FTPClient.noop()
          This method performs a "noop" operation with the server.
 FTPReply FTPCommunicationChannel.readFTPReply()
          This method reads and parses a FTP reply statement from the server.
 void FTPClient.rename(java.lang.String oldPath, java.lang.String newPath)
          This method renames a remote file or directory.
 FTPReply FTPClient.sendCustomCommand(java.lang.String command)
          This method sends a custom command to the server.
 FTPReply FTPClient.sendSiteCommand(java.lang.String command)
          This method sends a SITE specific command to the server.
 java.lang.String[] FTPClient.serverStatus()
          This method returns the remote server status, as the result of a FTP STAT command.
 void FTPClient.upload(java.io.File file)
          This method uploads a file to the remote server.
 void FTPClient.upload(java.io.File file, FTPDataTransferListener listener)
          This method uploads a file to the remote server.
 void FTPClient.upload(java.io.File file, long restartAt)
          This method resumes an upload of a file to the remote server.
 void FTPClient.upload(java.io.File file, long restartAt, FTPDataTransferListener listener)
          This method resumes an upload of a file to the remote server.
 void FTPClient.upload(java.lang.String fileName, java.io.InputStream inputStream, long restartAt, long streamOffset, long streamLength, FTPDataTransferListener listener)
          This method resumes an upload to the remote server.