edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Puts all files from supplied local dir matching the supplied wildcard into the current remote directory.

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

Syntax

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

Parameters

localDir
Type: System..::..String
name of local directory to get files into
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

No directories are put.

See Also