Uses of Class
it.sauronsoftware.ftp4j.FTPDataTransferException

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

Uses of FTPDataTransferException in it.sauronsoftware.ftp4j
 

Methods in it.sauronsoftware.ftp4j that throw FTPDataTransferException
 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.
 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.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.