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

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

Syntax

C#
void MultipleGet(
	string localDir,
	string remoteDir,
	FileFilter filter,
	bool recurse
)
Visual Basic
Sub MultipleGet ( _
	localDir As String, _
	remoteDir As String, _
	filter As FileFilter, _
	recurse As Boolean _
)
Visual C++
void MultipleGet(
	String^ localDir, 
	String^ remoteDir, 
	FileFilter^ filter, 
	bool recurse
)

Parameters

localDir
Type: System..::..String
local directory name
remoteDir
Type: System..::..String
remote directory name
filter
Type: EnterpriseDT.Net.Ftp..::..FileFilter
FileFilter to use for determining which files should be included.
recurse
Type: System..::..Boolean
if true, subdirectories are put

Remarks

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

See Also