I want to rename an existing file in Azure Storage Explorer.
the command bar has many buttons: copy, paste, clone, delete, etc. rename is not one of them.
I want to rename an existing file in Azure Storage Explorer.
the command bar has many buttons: copy, paste, clone, delete, etc. rename is not one of them.
Copyright © 2021 Jogjafile Inc.


I agree with Juunas's comment you cannot rename blobs in Storage Explorer directly.
Instead, you can use the below code with package
azure.storage.blobwhich copies the file with the new name and deletes the old blob file using Python SDK.In my environment, I have a blob with an image file name
goodone.jpgPortal:
Code:
Output:
Portal:
The above code executed and renamed the blob file successfully.