Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 471 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 471 Bytes

PowerShell : How to get all blob name and full path from azure blob container

Prerequisite

  • Azure Storage Account Name
  • Azure Storage Account Key
  • Azure Blob Container Name

Agenda

  • We will create a powershel script to get list of all blob inside a azure blob container
  • we will export all name and full path of eatch blob in a csv file

Library Used

  • Powershell Az Module
  • New-AzStorageContext
  • Get-AzStorageBlob
  • Export-Csv

Script

FileName.ps1