How to move data from a snapshot/managed disk to an Azure storage account?

Shayne Mei 20 Reputation points
2025-04-08T19:38:32.79+00:00

Goal is to move all data from a snapshot to an azure storage account. Tried running az cli from the cloud shell to move data directly from the snapshot but it complained that the data size is too big. Then I tried creating a disk, attach it to a VM, and then run azcopy, with a URL with SAS token, but I got the following error:

INFO: Scanning...
INFO: Any empty folders will not be processed, because source and/or destination doesn't have full folder support
failed to perform copy command due to error: cannot start job due to error: failed to scan path "...." due to stat "....": no such file or directory.

I have verified that the file path is a full path and accessible from the VM. I've also gone through a debug session with a microsoft Senior Digital Technical Specialist and wasn't able to resolve this.

Azure Storage
Azure Storage
Globally unique resources that provide access to data management services and serve as the parent namespace for the services.
3,529 questions
{count} votes

Accepted answer
  1. Venkatesan S 2,820 Reputation points Microsoft External Staff Moderator
    2025-04-15T05:19:34.5033333+00:00

    Hi Shayne Mei

    As per discussion in comments, Posting as answer.

    According to this MS-Document, you can’t create a page blob larger than 8 TiB.

    If you need to copy a 16 TiB blob, you can explicitly use the -=Blob-type BlockBlob parameter, provided you're okay with copying it as a block blob.

    Command:

    azcopy copy <source-url+?SAS token> <destination-url+?SAS token> --recursive=true --blob-type BlockBlob 
    

    The above command will directly copy the snapshots to your Azure Storage account.

    Hope this answer helps! please let us know if you have any further queries. I’m happy to assist you further.

    Please do not forget to "Accept the answer” and "Yes" for was this answer helpful. this can be beneficial to other community members.

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.