Can PutBlock be used to append to an existing BlockBlob in Azure
问题 As per the title, I have a program whereby I'm trying to add to an existing BlobkBlob using the PutBlock method: private static void UploadNewText(string text) { string fileName = "test4.txt"; string containerString = "mycontainer"; CloudStorageAccount storage = CloudStorageAccount.Parse(connection); CloudBlobClient client = storage.CreateCloudBlobClient(); CloudBlobContainer container = client.GetContainerReference(containerString); CloudBlockBlob blob = container.GetBlockBlobReference