是否有任何REST API来检查容器中是否存在Blob

时间:2020-10-21 14:22:55

标签: azure powershell azure-blob-storage

是否有任何REST API来检查容器中是否存在blob?我知道我们可以使用sdk实现tis,但是我有一个要求,我需要通过URI和SAS令牌(使用Powershell)进行检查。

1 个答案:

答案 0 :(得分:0)

使用powershell和Rest API

您将不得不使用invoke-webrequest-method头 您可以点击此endpoint 您可以检查服务器响应-如果收到 404 表示该Blob不存在。

如果该blob存在,它将返回该blob的标头。

示例代码:

try
{
Invoke-WebRequest -Method Head "https://svijaystorage.blob.core.windows.net/svijay-deploy/B.XML?sv=<SV>&st=2020-10-21T15:55:17Z&spr=https&sig=<SIG>" 
}
catch
{
if( $_.exception -like "*404*")
{
Write-Host "Blob Doesn't Exist" -ForegroundColor Yellow
}
}

存在blob时输出: enter image description here

不存在Blob时输出: enter image description here