gpt4 book ai didi

powershell - 在powershell中获取blob存储内容

转载 作者:行者123 更新时间:2023-12-03 00:35:18 25 4
gpt4 key购买 nike

我正在使用 Get-AzureStorageBlobContent 命令来获取保存我的应用程序版本的 blob:

$latestDeployment = (Get-AzureStorageBlobContent -Blob app.version -Container container -Context $blobContext)

该命令将其作为文件保存到磁盘,而我想将其加载到内存中并仅读取内容而不保存任何内容。可以使用powershell吗?

最佳答案

这应该有效

$latestDeploymentBlob = Get-AzureStorageBlob -Blob app.version -Container $container -Context $blobContext 
$latestDeployment = $latestDeploymentBlob.ICloudBlob.DownloadText()

关于powershell - 在powershell中获取blob存储内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42981341/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com