edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing
Put a local file onto the FTP server in the current directory. Allows appending if current file exists.

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

Syntax

C#
public virtual void Put(
	string localPath,
	string remoteFile,
	bool append
)
Visual Basic
Public Overridable Sub Put ( _
	localPath As String, _
	remoteFile As String, _
	append As Boolean _
)
Visual C++
public:
virtual void Put(
	String^ localPath, 
	String^ remoteFile, 
	bool append
)

Parameters

localPath
Type: System..::..String
Path of the local file.
remoteFile
Type: System..::..String
Name of remote file in current directory.
append
Type: System..::..Boolean
true if appending, false otherwise

Implements

IFileTransferClient..::..Put(String, String, Boolean)

See Also