Azure Functions 同步Azure Storage Blob
本文介绍: 一种通过Azure Functions 同步 blob的方法。 在之前的内容中,我们分享过Azure Functions+azcopy的同步方式,今天我们介绍在Functions中使用blob sdk进行同步,使用该方案,可以将Functions 同时部署到云端或边缘侧。 示例代码:https://github.com/sean8544/azure-blob-sync-by-azure-function-blob-trigger using System; using System.IO; using System.Linq; using System.Threading.Tasks; using Azure; using Azure.Storage.Blobs; using Azure.Storage.Blobs.Models; using Azure. …