This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Kudu.Client.
Summary
Uploads file to remote path.
- Assembly
- Cake
.Kudu .Client .dll - Namespace
- Cake
.Kudu .Client .Extensions - Containing Type
- Kudu
Client V F S Extensions
Syntax
public static void VFSUploadFile(this IKuduClient client, FilePath localPath, FilePath remotePath)
Examples
#addin nuget:?package=Cake.Kudu.Client
string baseUri = EnvironmentVariable("KUDU_CLIENT_BASEURI"),
userName = EnvironmentVariable("KUDU_CLIENT_USERNAME"),
password = EnvironmentVariable("KUDU_CLIENT_PASSWORD");
IKuduClient kuduClient = KuduClient(
baseUri,
userName,
password);
FilePath remoteFilePath = "/site/wwwroot/hello.txt";
FilePath localFilePath = "./hello.txt";
kuduClient.VFSUploadFile(localFilePath, remoteFilePath);
Parameters
Name | Type | Description |
---|---|---|
client | IKuduClient | The Kudu client. |
localPath | FilePath | The local source file path. |
remotePath | FilePath | The remote target file path. |
Return Value
Type | Description |
---|---|
void |