Is it better to have many small Azure storage blob containers (each with some blobs) or one really large container with tons of blobs?

Everyone has given you excellent answers around accessing blobs directly. However, if you need to list blobs in a container, you will likely see better performance with the many-container model. I just talked with a company who’s been storing a massive number of blobs in a single container. They frequently list the objects in the … Read more

Checking if a blob exists in Azure Storage

The new API has the .Exists() function call. Just make sure that you use the GetBlockBlobReference, which doesn’t perform the call to the server. It makes the function as easy as: public static bool BlobExistsOnCloud(CloudBlobClient client, string containerName, string key) { return client.GetContainerReference(containerName) .GetBlockBlobReference(key) .Exists(); }

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)