To set up a file share in Azure that can be accessed by local applications through a drive share, Azure Files is the recommended solution. Azure Files allows you to create file shares in the cloud that can be mounted on on-premises machines using the SMB (Server Message Block) protocol. This setup will enable your local applications to access files as if they were on a local drive, which is essential since they are hard-coded to specific drive letters.
Here are the steps to achieve this:
- Create an Azure File Share: You can create an Azure file share in your Azure storage account. This share can hold the files that your applications need.
- Mount the Azure File Share: On your on-premises PCs, you can map the Azure file share to a drive letter (e.g., E:). This can be done using the Windows Explorer or command line, allowing your applications to access the files directly.
- Use Azure File Sync: If you need to keep a local copy of the files or require better performance, consider using Azure File Sync. This service allows you to cache Azure file shares on your local servers, providing fast access to frequently used files while keeping everything in sync with the cloud.
- Consider Performance and Cost: Azure Files offers different storage tiers (SSD and HDD) to balance performance and cost. For your use case, since the total size is only about 2 GB and you expect more than 20 connections, SSD file shares might be a good fit for low latency and high performance.
This approach should meet your requirements for cloud storage while allowing your local applications to function without modification.
and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.