以下代码返回blob文件大小为0:
public long GetFileSize(string fileUrl)
{
var blob = GetBlobContainer().GetBlobReference(fileUrl);
return blob == null ? 0 : blob.Properties.Length;
}
,它几乎没有找到blob。但是我删除了blob,我发现它被删除了。这在删除时有效:
void DeleteFileFromBlob(string fileUrl, bool deleteSnapshots)
{
var blob = GetBlobContainer().GetBlobReference(fileUrl);
if (deleteSnapshots)
{
var options = new BlobRequestOptions { DeleteSnapshotsOption = DeleteSnapshotsOption.IncludeSnapshots };
blob.DeleteIfExists(options);
}
else blob.DeleteIfExists();
}
它与上面的代码基本相同,所以似乎找到了blob。
如果我遍历blob,我会得到正确的blob文件大小,就像我在计算存储空间的总存储量时一样:
public long GetStorageUsageByteSize()
{
var blobClient = GetBlobClient();
return (from container in blobClient.ListContainers()
select
(from CloudBlob blob in
container.ListBlobs(new BlobRequestOptions { UseFlatBlobListing = true })
select blob.Properties.Length
).Sum()
).Sum();
}
所以,当我将GetBlobReference与url一起使用时,我无法弄清楚为什么CloubdBlob :: Properties.Length返回0。
答案 0 :(得分:10)
看起来你错过了对FetchAttributes方法的调用,该方法加载了blob的元数据:
blob.FetchAttributes();
参考:https://azure.microsoft.com/en-us/documentation/articles/storage-properties-metadata/
答案 1 :(得分:0)
从服务器获取引用应该可以解决问题!
await blobContainer.GetBlobReferenceFromServerAsync(blobPath);