 | FtpAppend(String, Stream) Method |
Appends the content of the data streamto the file on the server, creating it if it doesn't exists.
Namespace: Limilabs.FTP.ClientAssembly: Ftp (in Ftp.dll) Version: 2.0.26109.1248
Syntaxpublic FtpResponse Append(
string remotePath,
Stream source
)
Public Function Append (
remotePath As String,
source As Stream
) As FtpResponse
public:
FtpResponse^ Append(
String^ remotePath,
Stream^ source
)
member Append :
remotePath : string *
source : Stream -> FtpResponse Parameters
- remotePath String
- The path of the remote file.
- source Stream
- The source data stream.
Return Value
FtpResponseServer response send after the transfer completed.
See Also