I have a project requirement to update an .xlsx from the Azure blob storage using Azure function app time trigger. I tried to do so with normal
with open(tempfilePath, "rb") as data:
myBlobClient.upload_blob(data, overwrite=True)
but I am getting [30] File is read only error. its working properly with standalone python code.
How to update it from Azure Function app time trigger function in Python?
New contributor
Priyank Gupta is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.