IFTPDownloadMultipleFiles Method |
Download multiple files from a remote server
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax bool DownloadMultipleFiles(
string remotePath,
string remoteFile,
string localPath,
FTPFileTransferAttributes transferAttrs
)
Function DownloadMultipleFiles (
remotePath As String,
remoteFile As String,
localPath As String,
transferAttrs As FTPFileTransferAttributes
) As Boolean
Parameters
- remotePath
- Type: SystemString
The path to files to download on remote server - remoteFile
- Type: SystemString
A file name pattern to select files to download. Accepts standard wildcard naming convention (e.g. *.xml to download all xml files from the specified remote folder) - localPath
- Type: SystemString
Path to store downloaded files on local machine - transferAttrs
- Type: NetQuarryFTPFileTransferAttributes
Specify Behavior of file transfer session
Return Value
Type:
BooleanTrue if the file transfer was successful. To see the upload status of each file transfer, inspect the
FileTransferResults property
See Also