copy files\folders from azure blob container to fileshare

Arif Usman 496 Reputation points
2022-10-21T17:23:12.177+00:00

folks,
Is it possible to copy files\folders from Auzre blob to file share in Azure Storage Explorer?
253068-image.png

Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
3,192 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. shiva patpi 13,366 Reputation points Microsoft Employee Moderator
    2022-10-21T19:23:45.407+00:00

    Hello @Arif Usman ,
    Using Storage Account explorer UI there is no option to copy from blob to file share but you can make use of azcopy commandline tool
    More about azcopy utility: https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10?WT.mc_id=AZ-MVP-5001086

    Example command which I just tried in my local to copy blob from container to fileshare

    .\azcopy.exe copy 'https://STORAGEACCOUNTNAME.blob.core.windows.net/test2/1.html?SASKEY' 'https://STORAGEACCOUNTNAME.file.core.windows.net/testa/f1/1.html?SASKEY'

    253127-image.png

    0 comments No comments

  2. Arif Usman 496 Reputation points
    2022-10-22T04:31:17.81+00:00

    how do you get sas key for fileshare? i know i can create for Blob


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.