| FtpAppend Method (String, Byte) |
Appends the content of the byte array to the file on the server, creating it if it doesn't exists.
Namespace:
Limilabs.FTP.Client
Assembly:
Ftp (in Ftp.dll) Version: 2.0.22214.1022
Syntax public FtpResponse Append(
string remotePath,
byte[] data
)
Public Function Append (
remotePath As String,
data As Byte()
) As FtpResponse
public:
FtpResponse^ Append(
String^ remotePath,
array<unsigned char>^ data
)
member Append :
remotePath : string *
data : byte[] -> FtpResponse
Parameters
- remotePath
- Type: SystemString
The path of the remote file. - data
- Type: SystemByte
The source data.
Return Value
Type:
FtpResponseServer response send after the transfer completed.
See Also