我的Azure存储容器有多个VHD文件,因此我如何使用AZ-copy工具将特定的VHD文件下载到本地。
答案 0 :(得分:3)
试试这个:
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]
替换为适当的值。