Looking at this blobs tutorial: channel 9 , I thought of using a blob container to save a bunch of tweets (saving the json of every tweet that is). Ideally, I would like to create a blob link for every hour of the day and add new tweets to this blob as they become available. The problem is that the UploadText (string) method overwrites the existing blob content, is there an easy way to add text to an existing blob?
Thanks!
fun (json:string) -> let account = CloudStorageAccount.Parse(RoleEnvironment.GetConfigurationSettingValue("DataConnectionString")) let blobs = account.CreateCloudBlobClient(); let tempBlob = blobs.GetBlobReference("tweets/2010-9-26/17/201092617.txt") tempBlob.Properties.ContentType <- "text/plain" tempBlob.UploadText(json)
source share