Hi Yves,
You have many interesting options on Azure to achive your requeriment ,An simple approach to follow could be have a process running X time comparing the upload date with your current datetime using these services:
- Azure Logic Apps (https://learn.microsoft.com/en-us/azure/connectors/connectors-native-recurrence?tabs=consumption)
- Azure Functions(https://learn.microsoft.com/en-us/azure/azure-functions/functions-bindings-timer?tabs=python-v2%2Cisolated-process%2Cnodejs-v4&pivots=programming-language-csharp)
The easier of these is Logic Apps and also you can add more functionally this is a draft of the workflow steps:
- Create logic Apps workflow
- Create a recurrence trigger for example each day
- Add Storage Blob Connector (https://learn.microsoft.com/en-us/azure/connectors/connectors-create-api-azureblobstorage?tabs=consumption)
- Compare blob metadata LastModified with current date.
- Trigger an email with the blob that It wasn't modified
On the other side you can do completely by code the same logic with azure functions.
Let me know if this help you.
Luis
If the information helped address your question, please Accept the answer.