我尝试使用代码段
将文件添加到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核心控制台应用程序