当前位置: 首页>>代码示例>>C#>>正文


C# CloudBlobContainer.FetchAttributes方法代码示例

本文整理汇总了C#中Microsoft.WindowsAzure.StorageClient.CloudBlobContainer.FetchAttributes方法的典型用法代码示例。如果您正苦于以下问题:C# CloudBlobContainer.FetchAttributes方法的具体用法?C# CloudBlobContainer.FetchAttributes怎么用?C# CloudBlobContainer.FetchAttributes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Microsoft.WindowsAzure.StorageClient.CloudBlobContainer的用法示例。


在下文中一共展示了CloudBlobContainer.FetchAttributes方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: UpdateStorage

        ///<summary>Updates the blobs in a storage container.</summary>
        ///<param name="container">The container to update.</param>
        ///<param name="newVersion">The new version being uploaded.</param>
        ///<param name="sourcePath">The directory on the local disk containing the new files.</param>
        public static void UpdateStorage(CloudBlobContainer container, Version newVersion, string sourcePath)
        {
            container.FetchAttributes();

            var remoteFiles = container.ListBlobs(Options).Cast<CloudBlob>().ToArray();
            var oldBlobs = remoteFiles.ToDictionary(
                blob => Path.Combine(sourcePath,
                    container.Uri.MakeRelativeUri(blob.Uri).ToString().Replace('/', '\\')
                )
            );

            var baseUri = new Uri(sourcePath, UriKind.Absolute);
            foreach (var file in new DirectoryInfo(sourcePath).EnumerateFiles("*", SearchOption.AllDirectories)) {
                CloudBlob blob;
                byte[] hash = file.SHA512Hash();

                //If there already is a blob for this file, use it.
                if (!oldBlobs.TryGetValue(file.FullName, out blob)) {
                    blob = container.GetBlobReference(baseUri.MakeRelativeUri(new Uri(file.FullName, UriKind.Absolute)).ToString());
                } else {
                    oldBlobs.Remove(file.FullName);	//Remove the blob from the dictionary; all blobs left in the dictionary will be deleted.

                    if (file.Length == blob.Properties.Length
                     && Convert.FromBase64String(blob.Metadata["SHA512"]).SequenceEqual(hash))
                        continue;	//If the blob is identical, don't re-upload it.
                }
                blob.Metadata["SHA512"] = Convert.ToBase64String(hash);
                blob.UploadFile(file.FullName);
            }

            foreach (var blob in oldBlobs.Values)
                blob.Delete();

            container.Metadata["Version"] = newVersion.ToString();
            container.SetMetadata();
        }
开发者ID:Amichai,项目名称:Prax,代码行数:40,代码来源:AzureDataCache.cs

示例2: Exists

 /// <summary>
 /// Checks if a container exists.
 /// </summary>
 /// <param name="container">Container to check for</param>
 /// <returns>Flag indicating the existence of the container</returns>
 private static bool Exists(CloudBlobContainer container)
 {
     try
     {
         container.FetchAttributes();
         return true;
     }
     catch (StorageClientException e)
     {
         if (e.ErrorCode == StorageErrorCode.ResourceNotFound)
         {
             return false;
         }
         else
         {
             throw;
         }
     }
 }
开发者ID:kirillg,项目名称:azure-sdk-tools,代码行数:24,代码来源:AzureBlob.cs

示例3: ContainerExists

        private bool ContainerExists(CloudBlobContainer container)
        {
            try
            {
                container.FetchAttributes();
            }
            catch (StorageClientException)
            {
                return false;
            }

            return true;
        }
开发者ID:kirpasingh,项目名称:MicrosoftAzureTrainingKit,代码行数:13,代码来源:MainView.xaml.cs


注:本文中的Microsoft.WindowsAzure.StorageClient.CloudBlobContainer.FetchAttributes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。