I am trying to deploy an existing .Net application into Azure App Service. The website needs to store and retrieve files. When reading the docs for Azure Files I was under the impression that this was the way to go:
Azure Files offers fully managed file shares in the cloud that are accessible via the industry standard Server Message Block (SMB) protocol.
And
"Lift and shift" applications: Azure Files makes it easy to "lift and shift" applications to the cloud that expect a file share to store file application or user data. Azure Files enables both the "classic" lift and shift scenario, where both the application and its data are moved to Azure, and the "hybrid" lift and shift scenario, where the application data is moved to Azure Files, and the application continues to run on-premises.
But I cannot find that this is actually supported in App Service. Is there no way to store files from a App Service without changing code and implementing a Azure specific storage solution?