Windows Azure: Creation of a file on cloud blob container
        Posted  
        
            by veda
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by veda
        
        
        
        Published on 2010-04-11T22:10:09Z
        Indexed on 
            2010/04/11
            22:13 UTC
        
        
        Read the original article
        Hit count: 623
        
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...
© Stack Overflow or respective owner