如何使用PowerShell检查Azure blob容器中是否已存在blob

时间:2015-02-17 20:28:50

标签: powershell azure-powershell

我有一个Windows PowerShell脚本,可以将文件上传到Azure Blob存储。 我希望文件只在容器中不存在时上传。

如何检查斑点是否已存在?

我厌倦了使用Get-AzureStorageBlob,但如果blob不存在,则会返回错误。我应该解析错误消息以确定blob不存在吗?这似乎不对......

并且Set-AzureStorageBlobContent在blob存在时要求确认。有没有办法自动回答“否”?此cmdlet没有-confirm,-force会覆盖该文件(我不想要)。

5 个答案:

答案 0 :(得分:10)

解决方案是在try / catch中包含对 Get-AzureStorageBlob 的调用并捕获 ResourceNotFoundException 以确定blob没有&# 39; t存在。

最后不要忘记-ErrorAction Stop

try
{   
    $blob = Get-AzureStorageBlob -Blob $azureBlobName -Container $azureStorageContainer -Context $azureContext -ErrorAction Stop
}
catch [Microsoft.WindowsAzure.Commands.Storage.Common.ResourceNotFoundException]
{
    # Add logic here to remember that the blob doesn't exist...
    Write-Host "Blob Not Found"
}
catch
{
    # Report any other error
    Write-Error $Error[0].Exception;
}

答案 1 :(得分:9)

这是@Chris的答案的变体。 Chris使用Exceptions和Try / Catch。在较大的系统中,try / catch非常棒。它允许代码中的错误引发异常,系统将回溯调用历史记录以查找匹配的catch语句。但是,当所有代码都在一个函数中时,为简单起见,我更喜欢检查返回值:

$blob = Get-AzureStorageBlob -Blob $azureBlobName -Container $azureStorageContainer -Context $azureContext -ErrorAction Ignore
if (-not $blob)
{
    Write-Host "Blob Not Found"
}

答案 2 :(得分:0)

没错,Set-AzureStorageBlobContent既没有-Confirm标志也没有-WhatIf标志。

你真的确定要忽略特定blob包含某些内容并且只是默默地覆盖它的内容这一事实吗?

看起来这里唯一一个可能(而且非常丑陋的)解决方案是try / catch块,里面有Get-AzureStorageBlob

答案 3 :(得分:0)

您可以获取所有blob的列表并查找您的文件。

$blobs = Get-AzureStorageBlob -Container $config.ImportContainerName -Context $storageContext

ForEach($file in Get-ChildItem -Path $config.LocalImportPath) {
    $blobName = $config.ImportBlobPrefix + "/" + $file.Name
    $blob = $blobs | Where-Object {$_.Name -eq $blobName}
    if (-not $file.Length -eq $blob.Length) {
        echo "todo upload" $file.Name
    }
}

答案 4 :(得分:0)

  $storageAccount = Get-AzureRmStorageAccount -ErrorAction Stop | where-object {$_.StorageAccountName -eq $StorageAccountName}
     If($storageAccount)
     {
        $key = (Get-AzureRmStorageAccountKey -ResourceGroupName $storageAccount.ResourceGroupName -name $storageAccount.StorageAccountName -ErrorAction Stop)[0].value
        $storageContext = New-AzureStorageContext -StorageAccountName $storageAccount.StorageAccountName -StorageAccountKey $key -ErrorAction Stop
        $storageContainer = Get-AzureStorageContainer -Context $storageContext -ErrorAction Stop | where-object {$_.Name -eq $ContainerName}
        If($storageContainer)
        {
            $blob = Get-AzureStorageBlob -Context $storageContext -Container $ContainerName -ErrorAction Stop | where-object {$_.Name -eq $BlobName}
            If($blob)
            {
                Write-Host "'$BlobName' blob found."
            }
            Else 
            {
                Write-Warning "'$BlobName' blob not found."
            }
        }
        Else 
        {
            Write-Warning "'$ContainerName' storage container not found."
        }
     }
     Else 
     {
         Write-Warning "'$StorageAccountName' storage account not found."
     }

您可以从how to check if a blob exists in Azure Storage using PowerShell

下载详细信息脚本