如何删除 Azure Blob 存储中的文件

How to delete a file in Azure blob storage

我很难找到使用 Go 删除​​存储在 Azure blob 存储中的文件的示例。唯一的示例是代码摘录 here,展示了如何删除整个容器。 感谢任何帮助,如果可能的话,您可以分享指向资源的链接以及 Go 中更详细的示例。

azblob package I see that there is a Delete method for the BlobUrl type, which marks the blob for deletion during the GC. It internally refers to the Delete BlobAPI调用中。