 | SFTPPutFile Method (String, String, String, String, String) |
Uploads a file using SFTP protocol and username/password.
Namespace:
Koden.Utils.FTPClient
Assembly:
Koden.Utils.FTPClient (in Koden.Utils.FTPClient.dll) Version: 1.1.6453.26060
Syntaxpublic static FWRetVal PutFile(
string host,
string userName,
string password,
string localFile,
string serverDest
)
Public Shared Function PutFile (
host As String,
userName As String,
password As String,
localFile As String,
serverDest As String
) As FWRetVal
public:
static FWRetVal^ PutFile(
String^ host,
String^ userName,
String^ password,
String^ localFile,
String^ serverDest
)
static member PutFile :
host : string *
userName : string *
password : string *
localFile : string *
serverDest : string -> FWRetVal
Parameters
- host
- Type: SystemString
The host. - userName
- Type: SystemString
Name of the user. - password
- Type: SystemString
The password. - localFile
- Type: SystemString
The local file. - serverDest
- Type: SystemString
The dest directory.
Return Value
Type:
FWRetVal[Missing <returns> documentation for "M:Koden.Utils.FTPClient.SFTP.PutFile(System.String,System.String,System.String,System.String,System.String)"]
See Also