Search code examples
c#azureazure-webjobs

Is it possible to access a UNC path from an Azure webjob?


I'm trying to access a unc path from Azure webjob which is in C#. Is it possible to connect to shared path which is in local network?


Solution

  • The comment is right, azure webjobs cannot access local path.

    You can consider use azure storage, like azure blob / azure files for the solution. Or FTP server which can be public accessed.