edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Gets this entire remote directory and its contents, recursively going through the remote directory name supplied.

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

Syntax

C#
public void Get(
	string localDir,
	string remoteDir,
	string wildcard,
	bool detectTransferMode
)
Visual Basic
Public Sub Get ( _
	localDir As String, _
	remoteDir As String, _
	wildcard As String, _
	detectTransferMode As Boolean _
)
Visual C++
public:
void Get(
	String^ localDir, 
	String^ remoteDir, 
	String^ wildcard, 
	bool detectTransferMode
)

Parameters

localDir
Type: System..::..String
name of local directory to get files into
remoteDir
Type: System..::..String
name of remote directory to get files from
wildcard
Type: System..::..String
wildcard for specifying files (? for single characters and * for multiple characters)
detectTransferMode
Type: System..::..Boolean
true if transfer mode is to be auto-detected from

Remarks

Gets the directory into the current local directory, into a directory with supplied localDir name

See Also