Package | Description |
---|---|
htsjdk.samtools.util.ftp |
Modifier and Type | Method and Description |
---|---|
FTPReply |
FTPClient.binary() |
FTPReply |
FTPClient.connect(String host)
Connects to the given FTP host on the default port.
|
FTPReply |
FTPClient.executeCommand(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(String username,
String password)
Wrapper for the commands
user [username] and pass
[password] . |
FTPReply |
FTPClient.pasv() |
FTPReply |
FTPClient.quit() |
FTPReply |
FTPClient.retr(String file) |
FTPReply |
FTPClient.size(String file)
Return the size of the remote file
|