Skip to content

Instantly share code, notes, and snippets.

@melkio
Created October 22, 2012 15:16
Show Gist options
  • Save melkio/3931980 to your computer and use it in GitHub Desktop.
Save melkio/3931980 to your computer and use it in GitHub Desktop.
Blob storage account
var account = CloudStorageAccount.DevelopmentStorageAccount;
var client = account.CreateCloudBlobClient();
var container = client.GetContainerReference("images");
container.CreateIfNotExist();
var blob = container.GetBlobReference("first_uploaded_file");
blob.UploadFile("file_path_to_upload");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment