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 Exception: OSError: [Errno 30] Read-only file system: ... "/home/site/wwwroot/AzureFunctionFileTest/ init .py", line 10, in main with open('test.json', 'w') as file. My script is below: logging.info('Python HTTP trigger function processed a request.') logging.info('opening file') with open('test.json', 'rb') as file