Is it possible to iterate through and operate on all of the blobs in an Azure storage container using a function triggered on a regular interval (timer trigger).
Path: {container-name}/{directory-name}/{file-name}
using System;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Host;
using Microsoft.Extensions.Logging;
namespace SampleNamespace
{
public static class SampleFunction
{
[FunctionName("SampleFunction")]
public static void Run([TimerTrigger("0 */1 * * * *")]TimerInfo myTimer, ILogger log)
{
// How to iterate an operate on all blobs?
}
}
}