FTPClientPut(String, String, Boolean) Method
Put a local file onto the FTP server in the current directory. Allows appending
if current file exists.
Namespace: EnterpriseDT.Net.FtpAssembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 12.7.0.0
public virtual void Put(
string localPath,
string remoteFile,
bool append
)
Public Overridable Sub Put (
localPath As String,
remoteFile As String,
append As Boolean
)
public:
virtual void Put(
String^ localPath,
String^ remoteFile,
bool append
)
abstract Put :
localPath : string *
remoteFile : string *
append : bool -> unit
override Put :
localPath : string *
remoteFile : string *
append : bool -> unit
- localPath String
- Path of the local file.
- remoteFile String
- Name of remote file in current directory.
- append Boolean
- true if appending, false otherwise
IFileTransferClientPut(String, String, Boolean)