我在上传近 2000 张图片后尝试设置正确的内容类型,但没有意识到我必须设置它们的 ContentType 属性。幸运的是,在我从 .png 文件转移到其他类型之前,我意识到了这一点。
这是我的方法:
private static void ChangeImageTypeInAzureStorage()
{
var client = GetAzureClient();
var blobContainer = client.GetContainerReference("accessibleimages");
var list = blobContainer.ListBlobs().OfType<CloudBlockBlob>().ToList();
if (!list.Any()) return; //log no entries returned
try
{
foreach (var item in list)
{
if (Path.GetExtension(item.Uri.AbsoluteUri) == ".png")
{
item.Properties.ContentType = "image/png";
}
item.SetProperties();
}
}
catch (Exception ex)
{
//log exceptions with your own methods
Console.WriteLine(ex);
}
Console.WriteLine("Done... press a key to end.");
Console.ReadKey();
}
我不明白为什么没有返回列表。客户端和 blobContainer 是正确的。我将这些图像上传到同一个客户端 blobContainer 没有问题。不用说它失败了,因为列表的计数总是 0。
任何帮助表示赞赏。