Copy data from Azure Storage to a local disk using the Azcopy tool

| By Navneet Kashyap

Step.1 Download Azcopy from Microsoft according to your OS type https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10 These files are compressed as a zip file, so extract them at a location Like D:\azcopy_windows_amd64_10.16.2\ Run AzCopy Sample command:- Step.2 Open the storage container from the Azure portal

How to Delete files from azure storage using python

| By Webner

First, install azure-storage-blob module. pip3 intall azure-storage-blob Then import ContainerClient: from azure.storage.blob import ContainerClient After that get your Credentials “Connection string” from the Microsoft official site https://portal.azure.com/#home inside the storage account option. After that just follow the below-mentioned code: from