Hello Eric Henderson,
Greetings! Welcome to Microsoft Q&A Platform.
To move your files from an Azure Blob container to Azure File Shares, you can use the AzCopy tool, which is a command-line utility designed for copying and synchronizing files between storage accounts. Here’s a step-by-step guide to help you:
1. Install AzCopy:
- Download and install AzCopy from the https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10
2. Generate SAS Tokens:
- Create Shared Access Signatures (SAS) for both your source Blob container and your destination File Share. This will allow AzCopy to access your storage accounts securely.
3. Use AzCopy to Sync Files:
- Open your command prompt or terminal and use the following command to sync your files:
Windows Command PromptCopy
azcopy sync "https://<sourceaccount>.blob.core.windows.net/<container-name>?<SAS>" "https://<targetaccount>.file.core.windows.net/<fileshare-name>?<SAS>" --recursive=true
- Replace
<sourceaccount>
,<container-name>
,<SAS>
,<targetaccount>
, and<fileshare-name>
with your actual account names, container name, and SAS tokens.
4. Monitor the Transfer:
- AzCopy will display the progress of the transfer. Given the size of your data (1.6TB), this process might take some time.
5. Verify the Transfer:
- Once the transfer is complete, verify that all files have been successfully copied to your Azure File Share.
reference for migrating the data - https://learn.microsoft.com/en-us/azure/storage/files/storage-files-migration-nas-hybrid
Alternatively, you can perform the same via Azure Storage explorer to transfer the data to file storage.
Hope the information helps! please let us know if you have any further queries. I’m happy to assist you further.
Please "Accept the answer” and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.