1

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

4

1 回答 1

1

你可以尝试这样的事情:

$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();
}
于 2012-11-30T07:31:59.060 回答