SSHSCPClientPut(Byte, String, Boolean) Method
Put data onto the SFTP server in the current directory. Allows
appending if current file exists.
Namespace: EnterpriseDT.Net.Ftp.SshAssembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 12.7.0.0
public virtual void Put(
byte[] bytes,
string remote,
bool append
)
Public Overridable Sub Put (
bytes As Byte(),
remote As String,
append As Boolean
)
public:
virtual void Put(
array<unsigned char>^ bytes,
String^ remote,
bool append
)
abstract Put :
bytes : byte[] *
remote : string *
append : bool -> unit
override Put :
bytes : byte[] *
remote : string *
append : bool -> unit
- bytes Byte
- Array of bytes to put.
- remote String
- Name of remote file in current directory.
- append Boolean
- true if appending, false otherwise.
IFileTransferClientPut(Byte, String, Boolean)