skip to Main Content

for my Azure Storage Account w/ hierarchical namespace, I’ve assigned the Storage Account Contributor and Storage Blob Data Contributor to my user account:

Upload / download of blobs and folder works fine, but i can’t delete folders. Whenever i try to select a folder over the checkbox and click "Delete" i get this error:

Which permission in the Access Control IAM is required for deletion of a folder in Azure Storage account?

enter image description here

Thanks

2

Answers


  1. helo to delete a folder in azure storage acount you need to have the Microsoft.Storage/storageAccounts/blobServices/delete permission. This permission can be granted through the Storage Blob Data Contributor, Storage Blob Data Owner or the Storage Account Contributor roles in the Access Control (IAM) settings of the Azure Storage account.
    or you can delete all the folder inside the blod you should look a this
    https://learn.microsoft.com/en-us/answers/questions/507459/deleting-a-folder-from-blob-storagelo to delete a folder in a storage account.
    i wish i could help you

    Login or Signup to reply.
  2. I think that you don’t have the permission to delete those files, with azure lock service, the administrator can configure this service to prevent users from deleting some files by mistake, you can look about this : https://learn.microsoft.com/en-us/azure/storage/common/lock-account-resource?tabs=portal

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search