SSHFTPClientPut(Stream, String, Boolean) Method
Put a stream of data onto the FTP 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 override long Put(
Stream input,
string remote,
bool append
)
Public Overrides Function Put (
input As Stream,
remote As String,
append As Boolean
) As Long
public:
virtual long long Put(
Stream^ input,
String^ remote,
bool append
) override
abstract Put :
input : Stream *
remote : string *
append : bool -> int64
override Put :
input : Stream *
remote : string *
append : bool -> int64
- input Stream
- Input stream of data to put.
- remote String
- Name of remote file in current directory.
- append Boolean
- true if appending, false otherwise.
Int64Number of bytes transferred.
IFileTransferClientPut(Stream, String, Boolean)
The stream is closed after the transfer is complete if
[!:CloseStreamsAfterTransfer] is true (the default) and are left
open otherwise.