Azure中的Powershell脚本

时间:2018-11-08 18:13:11

标签: azure powershell azure-storage

我是Azure和Powershell的新手。

我在Azure容器中有文件,我希望能够写入一个新文件,即容器中所有文件的列表。

我看到有“ Get-ChildItem”,但我不知道如何在Azure上的容器中使用它。

你能帮我吗??

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

您需要使用Get-AzureStorageBlob cmdlet,如下所示:

Get-AzureStorageBlob -Container containerName -Context (Create context here)

更多示例:
https://docs.microsoft.com/en-us/azure/storage/common/storage-powershell-guide-full#create-a-storage-account
https://docs.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-powershell