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 に答える