Reputation: 5655
I have a storage account in Azure in Australia. I wish to access the files in the file storage associated with this storage account in Thailand.
What is the best way to achieve this? Do I create a separate storage account and then replicate it?
Upvotes: 0
Views: 582
Reputation: 42133
Based on my knowledge, you could access the files from anywhere.
Refer to this link:
- Accessible. Data in Azure Storage is accessible from anywhere in the world over HTTP or HTTPS. Microsoft provides SDKs for Azure Storage in a variety of languages -- .NET, Java, Node.js, Python, PHP, Ruby, Go, and others -- as well as a mature REST API. Azure Storage supports scripting in Azure PowerShell or Azure CLI. And the Azure portal and Azure Storage Explorer offer easy visual solutions for working with your data.
Besides, if you want to replicate the files, you could use AzCopy to do it.
Upvotes: 1