Skip to content
Advertisement

Python: How to move or copy Azure Blob from one container to another

I am using Microsoft Azure SDK for Python in project. I want to move or copy Blob from one container to another. for exmaple

JavaScript

I want to move this blob to

JavaScript

I have found following method in python SDK but unable to understand it.

JavaScript

How can I do this? Thank you

Advertisement

Answer

I have done in this way.

JavaScript

I have not found any Blob Move method yet. So I have used the copy method and then execute Blob function.

This is my solution. If you have better way to handle all this please share with me.

Note: I have not used any custom method all these methods are included in SDK.

Advertisement