Get multiple files from the specified remote directory into the specified local directory

Namespace: EnterpriseDT.Net.Ftp.Ssh
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 9.4.0.40

Syntax

C#
public virtual void MultipleGet(
	string localDir,
	string remoteDir,
	string wildcard,
	bool recurse
)
Visual Basic
Public Overridable Sub MultipleGet ( _
	localDir As String, _
	remoteDir As String, _
	wildcard As String, _
	recurse As Boolean _
)
Visual C++
public:
virtual void MultipleGet(
	String^ localDir, 
	String^ remoteDir, 
	String^ wildcard, 
	bool recurse
)

Parameters

localDir
Type: System..::..String
local directory name
remoteDir
Type: System..::..String
remote directory name
wildcard
Type: System..::..String
wildcard for specifying files (? for single characters and * for multiple characters)
recurse
Type: System..::..Boolean
if true, subdirectories are put

Implements

IExFileTransferClient..::..MultipleGet(String, String, String, Boolean)

Remarks

Optionally, all subdirectories can be transferred as well. Note that the wildcard is only applicable to files, not to subdirectories

See Also