The workflow/function (calling it like that as I do not know how) should be in Azure.
Modern A application can write to Azure not to shared directory
Legacy B application can read from shared directory not Azure
- A sends file to Azure
- Azure sends file to shared directory
Is 2. possible?
CodePudding user response:
Using Azure File Storage, application A can store the data on a storage account (which lives on Azure), and also, application B can mount a network drive pointing to Azure File Storage.
Application A can upload a file like this (assuming it's using c#):