2

my Azure storage container having multiple VHD files so how can i download specific VHD file to local using AZ-copy tool.

abatishchev
  • 98,240
  • 88
  • 296
  • 433
kamlesh bhatt
  • 69
  • 1
  • 3
  • 8

1 Answers1

3

Try this:

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

Replace [accountname], [containername], [folder path], [account key] and [vhd file name] with appropriate values.

Gaurav Mantri
  • 128,066
  • 12
  • 206
  • 241