如何删除blob存储容器azure NodeJS

时间:2017-01-05 15:19:32

标签: node.js azure blob containers

我正在尝试使用Azure-storage-node

删除整个blob存储容器

但我似乎无法在任何地方找到如何做到这一点。关于如何为blob执行此操作有很多信息。但在我的情况下,我需要删除整个容器。 我正在使用NodeJS服务器。 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

您要拨打的功能是deleteContainerdeleteContainerIfExists。这将删除整个容器。

var blobSvc = azure.createBlobService();
blobSvc.deleteContainerIfExists('mycontainer', function(error, result, response){
    if(!error){
      console.log('container deleted!')
    }
});