protected async Task CreateFolderAsync(string path, string name, IEnumerable<object> selectedItems = null)
{
...
...
else
{
CloudBlockBlob blob = container.GetBlockBlobReference(path + name + "/About.txt");
blob.Properties.ContentType = "text/plain";
await blob.UploadTextAsync("");
}
} |