【问题标题】:Download specific VHD file using Azcopy使用 Azcopy 下载特定的 VHD 文件
【发布时间】:2025-12-31 18:10:01
【问题描述】:

我的 Azure 存储容器有多个 VHD 文件,所以我如何使用 AZ-copy 工具将特定的 VHD 文件下载到本地。

【问题讨论】:

  • 到目前为止你尝试了什么?

标签: azure vhd azcopy


【解决方案1】:

试试这个:

AzCopy /Source:"https://[accountname].blob.core.windows.net/[containername]/" /Dest:"[folder path e.g. d:\test\]" /SourceKey:[account key] /Pattern:"[vhd file name]"

[accountname][containername][folder path][account key][vhd file name] 替换为适当的值。

【讨论】: