Package | Description |
---|---|
com.enterprisedt.net.ftp |
Contains classes that add support for secure file transfers via the SFTP and FTPS protocols,
as well as advanced FTP features such as connection pooling and asynchronous methods.
|
com.enterprisedt.net.ftp.async |
This package contains the classes used for asynchronous programming - primarily the XXXResult classes,
which are returned from asynchronous methods and used to provide details about the operation,
such as what file is being transferred.
|
Modifier and Type | Method and Description |
---|---|
DownloadMultipleResult |
AsyncFileTransferClient.downloadMultipleAsync(java.lang.String localDir,
java.io.FileFilter filter,
AsyncCallback.DownloadMultiple callback,
java.lang.Object tag)
Downloads remote files to the supplied local directory that match the supplied wildcard
from the current remote directory.
|
DownloadMultipleResult |
AsyncFileTransferClient.downloadMultipleAsync(java.lang.String localDir,
java.lang.String wildcard,
AsyncCallback.DownloadMultiple callback,
java.lang.Object tag)
Downloads remote files to the supplied local directory that match the supplied wildcard
from the current remote directory.
|
DownloadMultipleResult |
AsyncFileTransferClient.downloadMultipleAsync(java.lang.String localDir,
java.lang.String remoteDir,
java.io.FileFilter filter,
boolean recursive,
AsyncCallback.DownloadMultiple callback,
java.lang.Object tag)
Downloads remote files to the supplied local directory that match the supplied wildcard
from the current remote directory.
|
DownloadMultipleResult |
AsyncFileTransferClient.downloadMultipleAsync(java.lang.String localDir,
java.lang.String remoteDir,
java.lang.String wildcard,
boolean recursive,
AsyncCallback.DownloadMultiple callback,
java.lang.Object tag)
Downloads remote files to the supplied local directory that match the supplied wildcard
from the current remote directory.
|
Modifier and Type | Method and Description |
---|---|
void |
AsyncCallback.DownloadMultiple.onDownloadMultiple(DownloadMultipleResult result) |
Copyright © 2001-2014 Enterprise Distributed Technologies Ltd. All Rights Reserved.