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

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

Syntax

C#
public virtual void MultiplePut(
	string localDir,
	string remoteDir,
	string wildcard,
	bool recurse
)
Visual Basic
Public Overridable Sub MultiplePut ( _
	localDir As String, _
	remoteDir As String, _
	wildcard As String, _
	recurse As Boolean _
)
Visual C++
public:
virtual void MultiplePut(
	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..::..MultiplePut(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