2

给出以下代码和输出,每次我尝试下载该文件时都会遇到相同的异常。

如果我在没有 md5 验证的情况下下载它并检查内容,则文件没有任何问题,因此我怀疑 blob 元数据上的 md5 属性值不正确。

我试图弄清楚它是如何变得无效的。上传文件时设置此属性的不是azure blob storage internal吗?

我不想将 DisableContentMD5Validation 作为解决方案。

(ps.我首先使用Couldberry Explorer上传文件)

     static void Main(string[] args)
    {
        {
            try
            {

                var client = account.CreateCloudBlobClient();
                var container = client.GetContainerReference("algorithms");
                var blob = container.GetBlockBlobReference("SInnovations.Algorithms/SInnovations.Algorithms.FootprintFinder.1.0.0-pre-20140430.zip");
                blob.FetchAttributes();
                Console.WriteLine(blob.Properties.ContentMD5);

                blob.DownloadToFile("c:\\dev\\test.zip", System.IO.FileMode.Create);

            }
            catch (StorageException ex)
            {
                if (ex.Message == "Calculated MD5 does not match existing property")
                {
                    Console.WriteLine("Calculated MD5 does not match existing property");
                }

            }
        }
        {


            var client = account.CreateCloudBlobClient();
            var container = client.GetContainerReference("algorithms");
            var blob = container.GetBlockBlobReference("SInnovations.Algorithms/SInnovations.Algorithms.FootprintFinder.1.0.0-pre-20140430.zip");
            blob.FetchAttributes();
            Console.WriteLine(blob.Properties.ContentMD5);

            blob.DownloadToFile("c:\\dev\\test.zip", System.IO.FileMode.Create,null,new BlobRequestOptions()
            {
                DisableContentMD5Validation = true,
            });
            using (var md5 = MD5.Create())
            {
                using (var stream = File.OpenRead("c:\\dev\\test.zip"))
                {
                    Console.WriteLine(md5.ComputeHash(stream));
                }
            }

        }
    }
}

给出这个输出

RH4EqqbthSm24KPgZ2VSGQ==
Calculated MD5 does not match existing property
RH4EqqbthSm24KPgZ2VSGQ==
System.Byte[]
Press any key to continue . . .

不好的例子,本地文件 md5 实际上是 Hv+nQRNCPQnvy4WU9+qaQA==。

结论该属性必须在某些时候设置错误。

解决方案。下载并计算 md5 并更新 blob 的属性值。

4

1 回答 1

0

我遇到了同样的问题,通过 CloudBerry Storage Explorer (2.4.0.163) 上传的文件。我通过 Azure 门户和 Azure 存储资源管理器 ( http://storageexplorer.com/ ) 上传了相同的文件,但没有遇到相同的问题(内容损坏或 md5 不匹配)。

于 2017-01-23T07:42:57.367 回答