Constructor and Description |
---|
FtpSession(org.apache.commons.net.ftp.FTPClient client) |
Modifier and Type | Method and Description |
---|---|
void |
close() |
boolean |
exists(String path) |
boolean |
finalizeRaw()
Invoke after closing the InputStream from
Session.readRaw(String) . |
boolean |
isOpen() |
org.apache.commons.net.ftp.FTPFile[] |
list(String path) |
String[] |
listNames(String path) |
boolean |
mkdir(String remoteDirectory) |
void |
read(String path,
OutputStream fos) |
InputStream |
readRaw(String source)
Retrieve a remote file as a raw
InputStream . |
boolean |
remove(String path) |
void |
rename(String pathFrom,
String pathTo) |
void |
write(InputStream inputStream,
String path) |
public boolean remove(String path) throws IOException
remove
in interface Session<org.apache.commons.net.ftp.FTPFile>
IOException
public org.apache.commons.net.ftp.FTPFile[] list(String path) throws IOException
list
in interface Session<org.apache.commons.net.ftp.FTPFile>
IOException
public String[] listNames(String path) throws IOException
listNames
in interface Session<org.apache.commons.net.ftp.FTPFile>
IOException
public void read(String path, OutputStream fos) throws IOException
read
in interface Session<org.apache.commons.net.ftp.FTPFile>
IOException
public InputStream readRaw(String source) throws IOException
Session
InputStream
.readRaw
in interface Session<org.apache.commons.net.ftp.FTPFile>
source
- The path of the remote file.IOException
- Any IOException.public boolean finalizeRaw() throws IOException
Session
Session.readRaw(String)
.
Required by some session providers.finalizeRaw
in interface Session<org.apache.commons.net.ftp.FTPFile>
IOException
- Any IOException.public void write(InputStream inputStream, String path) throws IOException
write
in interface Session<org.apache.commons.net.ftp.FTPFile>
IOException
public void close()
public boolean isOpen()
public void rename(String pathFrom, String pathTo) throws IOException
rename
in interface Session<org.apache.commons.net.ftp.FTPFile>
IOException
public boolean mkdir(String remoteDirectory) throws IOException
mkdir
in interface Session<org.apache.commons.net.ftp.FTPFile>
IOException
public boolean exists(String path) throws IOException
exists
in interface Session<org.apache.commons.net.ftp.FTPFile>
IOException