Appends the content of the data stream to the file on the server.

Namespace:  Rebex.Net
Assembly:  Rebex.Ftp (in Rebex.Ftp.dll)

Syntax

Visual Basic
Public Function AppendFile ( _
	sourceStream As Stream, _
	remotePath As String, _
	length As Long _
) As Long
C#
public long AppendFile(
	Stream sourceStream,
	string remotePath,
	long length
)

Parameters

sourceStream
Type: System.IO..::..Stream
The source data stream.
remotePath
Type: System..::..String
The path of the remote file. This cannot be a directory.
length
Type: System..::..Int64
Number of bytes to transfer or -1 to transfer the whole stream.

Return Value

Number of bytes transferred.

Remarks

Represents FTP APPE command.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also