将文件添加到Blob存储

时间:2017-12-08 05:30:44

标签: c# azure cloud storage azure-storage-blobs

我尝试使用代码段

将文件添加到Azure Blob
    async void archiveNewImportedImages(List<ImportedImageFile> imageFiles)
    {

        // Saving the images
        // Retrieve reference to a blob named "myblob".




        using (var fileStream = System.IO.File.OpenRead(@"C:\Users\rahulchawla\Desktop\FilezilleIMGS\FilezilleIMGS\MTO_Image\CR01-1-20170623-1308.jpg"))
        {
            await blockBlob.UploadFromStreamAsync(fileStream);
        }





    }       

我尝试使用UploadFromStream方法,但我收到的错误是cloudblockblob没有扩展方法,并建议使用Async。我还试图添加测试图像,文件流读/写超时有错误 - 有什么建议吗?这是一个.net核心控制台应用程序

0 个答案:

没有答案