Skip to content Skip to sidebar Skip to footer

Working With Python Files In Azure Function - Read Only File System

New to Azure functions, but looking to utilize a Function in an ADF pipeline to call out to a third party and write the json back for ingestion. However, I receive Result: Failure

Solution 1:

The current directory is indeed read-only. Use /tmp for temporary files (for example, open('/tmp/test.json', ...). For more details, see https://docs.microsoft.com/en-us/azure/azure-functions/functions-reference-python#temporary-files.


Post a Comment for "Working With Python Files In Azure Function - Read Only File System"