有什么方法可以通过Javascript 删除Azure Blob 容器文件吗?

Are there any way to delete Azure Blob Container files through Javascript?

我目前有一个项目,我将在 Blob 容器中上传一些文件,有些情况下我也想永久删除一些文件,但应该通过 JavaScript。有什么办法吗?

试试这个:

const {
    BlobServiceClient
  } = require("@azure/storage-blob");

  const connectionString = '<storage connection string>'
  const container = '<container name>'
  const blob = '<blob name>'

  const blobClient = BlobServiceClient.fromConnectionString(connectionString).getContainerClient(container).getBlobClient(blob);
  blobClient.deleteIfExists().then(result =>{console.log(result._response.status + " blob removed")})

如果您还有其他问题,请告诉我。