Formerly known as Azure AI Services or Azure Cognitive Services is a unified collection of prebuilt AI capabilities within the Microsoft Foundry platform
Hello Singh, Jabeez,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
The “Permission Denied” error usually happens because App Service runs in a sandbox with restricted file system access.
Now what you can do:
- Write files only to allowed paths:
- Windows:
D:\home\site\wwwrootorD:\home\data.- Linux:
/home. - Avoid system directories — they’re read-only.
- If using mounted storage, ensure your app’s managed identity has the right RBAC roles (e.g.,
Storage Blob Data Contributor).
- Linux:
- Windows:
- Use Kudu Console to verify permissions and paths:
https://<your-app>.scm.azurewebsites.net/DebugConsole.
Reference:
Hope this helps! Thankyou.