我正在尝试使用Azure-storage-node
删除整个blob存储容器但我似乎无法在任何地方找到如何做到这一点。关于如何为blob执行此操作有很多信息。但在我的情况下,我需要删除整个容器。 我正在使用NodeJS服务器。 任何帮助将不胜感激。
答案 0 :(得分:2)
您要拨打的功能是deleteContainer
或deleteContainerIfExists
。这将删除整个容器。
var blobSvc = azure.createBlobService();
blobSvc.deleteContainerIfExists('mycontainer', function(error, result, response){
if(!error){
console.log('container deleted!')
}
});