Package | Description |
---|---|
htsjdk.samtools.util.ftp |
Modifier and Type | Method and Description |
---|---|
FTPReply |
FTPClient.binary() |
FTPReply |
FTPClient.connect(java.lang.String host)
Connects to the given FTP host on the default port.
|
FTPReply |
FTPClient.executeCommand(java.lang.String command)
Executes the given FTP command on our current connection, returning the
three digit response code from the server.
|
FTPReply |
FTPClient.getReply() |
FTPReply |
FTPClient.login(java.lang.String username,
java.lang.String password)
Wrapper for the commands
user [username] and pass
[password] . |
FTPReply |
FTPClient.pasv() |
FTPReply |
FTPClient.quit() |
FTPReply |
FTPClient.retr(java.lang.String file) |
FTPReply |
FTPClient.size(java.lang.String file)
Return the size of the remote file
|