edtFTPnet/PRO - Secure FTP component for .NET | Free Trial | Pricing

FTPConnectionUploadStream(Stream, String, WriteMode) Method

Upload a stream of data to the FTP server in the current working directory. Allows appending if current file exists.

Definition

Namespace: EnterpriseDT.Net.Ftp
Assembly: edtFTPnetPRO (in edtFTPnetPRO.dll) Version: 12.7.0.0
C#
public virtual void UploadStream(
	Stream srcStream,
	string remoteFile,
	WriteMode writeMode
)

Parameters

srcStream  Stream
Input stream of data to put.
remoteFile  String
Name of remote file in current working directory.
writeMode  WriteMode
Overwrite, Append or Resume.

Remarks

The stream is closed after the transfer is complete if CloseStreamsAfterTransfer is true (the default) and are left open otherwise.

See Also