使用Amazon SDK for .NET从 S3 Glacier 的文件库中下载档案 - Amazon S3 Glacier
Amazon Web Services 文档中描述的 Amazon Web Services 服务或功能可能因区域而异。要查看适用于中国区域的差异,请参阅 中国的 Amazon Web Services 服务入门 (PDF)

如果您不熟悉 Amazon Simple Storage Service (Amazon S3) 中的归档存储功能,建议您先详细了解 Amazon S3 中的 S3 Glacier 存储类、S3 Glacier 即时检索S3 Glacier 灵活检索S3 Glacier 深度归档。有关更多信息,请参阅 Amazon S3 用户指南中的 S3 Glacier 存储类和用于存档对象的存储类。

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

使用Amazon SDK for .NET从 S3 Glacier 的文件库中下载档案

以下 C# 代码示例使用Amazon SDK for .NET 高级 API 来下载您在之前的使用Amazon SDK for .NET将档案上传到 S3 Glacier 中的文件库步骤中上传的档案。在代码示例中,请注意以下情况:

  • 该示例为指定的 Amazon S3 Glacier 区域端点创建 ArchiveTransferManager 类的实例。

  • 该代码示例使用美国西部(俄勒冈州)区域 (us-west-2) 匹配您之前在步骤 2:在 S3 Glacier 中创建文件库中创建文件库的位置。

  • 该示例使用 Download 类的 ArchiveTransferManager API 操作下载档案。该示例将创建 Amazon Simple Notification Service (Amazon SNS) 主题,以及该主题订阅的 Amazon Simple Queue Service (Amazon SQS) 队列。如果您按照步骤 1:开始使用 S3 Glacier 之前中的说明创建了 Amazon Identity and Access Management (IAM) 管理用户,则您的用户具有必要的 IAM 权限以创建和使用 Amazon SNS 主题和 Amazon SQS 队列。

  • 此示例启动了存档检索任务,并对队列进行轮询以便找到可用存档。如果档案可用,则开始下载。有关检索时间的详细信息,请参阅 档案检索选项

有关如何运行以下示例的分步说明,请参阅运行代码示例。您需要更新 步骤 3:在 S3 Glacier 中将存档上传到文件库 中已上传文件的档案 ID 旁显示的代码。

例 —使用Amazon SDK for .NET 高级 API 下载档案
using System; using Amazon.Glacier; using Amazon.Glacier.Transfer; using Amazon.Runtime; namespace glacier.amazon.com.docsamples { class ArchiveDownloadHighLevel_GettingStarted { static string vaultName = "examplevault"; static string archiveId = "*** Provide archive ID ***"; static string downloadFilePath = "*** Provide the file name and path to where to store the download ***"; public static void Main(string[] args) { try { var manager = new ArchiveTransferManager(Amazon.RegionEndpoint.USWest2); var options = new DownloadOptions(); options.StreamTransferProgress += ArchiveDownloadHighLevel_GettingStarted.progress; // Download an archive. Console.WriteLine("Intiating the archive retrieval job and then polling SQS queue for the archive to be available."); Console.WriteLine("Once the archive is available, downloading will begin."); manager.Download(vaultName, archiveId, downloadFilePath, options); Console.WriteLine("To continue, press Enter"); Console.ReadKey(); } catch (AmazonGlacierException e) { Console.WriteLine(e.Message); } catch (AmazonServiceException e) { Console.WriteLine(e.Message); } catch (Exception e) { Console.WriteLine(e.Message); } Console.WriteLine("To continue, press Enter"); Console.ReadKey(); } static int currentPercentage = -1; static void progress(object sender, StreamTransferProgressArgs args) { if (args.PercentDone != currentPercentage) { currentPercentage = args.PercentDone; Console.WriteLine("Downloaded {0}%", args.PercentDone); } } } }