Home > front end >  Move file in Azure Storage to shared network directory
Move file in Azure Storage to shared network directory

Time:11-04

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

  1. A sends file to Azure
  2. 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#):

enter image description here

  • Related