Azure / azure-storage-java

Microsoft Azure Storage Library for Java
https://docs.microsoft.com/en-us/java/api/overview/azure/storage
MIT License
189 stars 165 forks source link

Copy/Move entire folder at once from one location to another location within azure storage account #561

Open Syed-SnapLogic opened 3 years ago

Syed-SnapLogic commented 3 years ago

Which service(blob, file, queue, table) does this issue concern?

blob

Which version of the SDK was used?

azure-storage 8.3.0

What problem was encountered?

My requirement is to copy/move an entire folder from location to another location. Presently I am doing by copying/moving one file at a time. This is resulting into too many API calls. I want to minimise the number of API calls. Is it possible this version (or a higher version) of the azure-storage SDK supports copy/move operation at directory level?

Have you found a mitigation/solution?

AzCopy is what I am exploring. Wanted to know if SDK has this feature, and if AzCopy would be right to do that.