| FtpUpload Method (String, String) |
Uploads the content of the local file to the file on the server, overriding it if it already exists.
Namespace:
Limilabs.FTP.Client
Assembly:
Ftp (in Ftp.dll) Version: 2.0.22214.1022
Syntax public FtpResponse Upload(
string remotePath,
string localPath
)
Public Function Upload (
remotePath As String,
localPath As String
) As FtpResponse
public:
FtpResponse^ Upload(
String^ remotePath,
String^ localPath
)
member Upload :
remotePath : string *
localPath : string -> FtpResponse
Parameters
- remotePath
- Type: SystemString
The path of the remote file. - localPath
- Type: SystemString
The path of the local file.
Return Value
Type:
FtpResponseServer response send after the transfer completed.
See Also