views:

277

answers:

3

I am writing a program that will be executing on the cloud. The program will generate an output that should be written on to a file and the file should be saved on the blob container.

I don't have a idea of how to do that

Will this code

FileStream fs = new FileStream(file, FileMode.Create);
        StreamWriter sw = new StreamWriter(fs);

generate a file named "file" on the cloud...

+1  A: 

Perhaps you should read something like this:

http://dvanderboom.wordpress.com/2009/02/21/windows-azure-blobs-and-blocks/

Peter LaComb Jr.
A: 

Oh.. then how to store the content to the blob..

veda
A: 

Go to http://www.codeplex.com/ and search for "blob storage" - currently 32 projects are "found."

GoAzure