gpt4 book ai didi

Azure 容器已经存在?

转载 作者:行者123 更新时间:2023-12-03 03:19:50 24 4
gpt4 key购买 nike

在 Azure SDK for PHP 中,是否有任何方法可以检查帐户中是否已存在容器?是否存在任何函数或调用可以让我知道容器的存在?

最佳答案

你可以尝试这样的事情:

$blobRestProxy = ServicesBuilder::getInstance()->createBlobService($connectionString);

try {
$blobRestProxy->getContainerProperties("mycontainer");
// The container exists.
}
catch(ServiceException $e){
// Code ContainerNotFound (404) means the container does not exist.
$code = $e->getCode();
}

关于Azure 容器已经存在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13638966/

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