tagged [blob]

How do I save byte arrays i.e. byte[] to Azure Blob Storage?

How do I save byte arrays i.e. byte[] to Azure Blob Storage? I know how to save Streams, but I want to take that stream and create thumbnails and other sized images, but I don't know how to save a byt...

27 Feb at 14:56

Checking if a blob exists in Azure Storage

Checking if a blob exists in Azure Storage I've got a very simple question (I hope!) - I just want to find out if a blob (with a name I've defined) exists in a particular container. I'll be downloadin...

21 Sep at 05:29

Copy blob between storage accounts

Copy blob between storage accounts I'm trying to copy a blob from one storage account to another (In a different location). I'm using the following code: ``` var sourceContainer = sourceClient.GetCont...

13 Apr at 13:21

How to download a file to browser from Azure Blob Storage

How to download a file to browser from Azure Blob Storage I'm already successfully listing available files, but I needed to know how I could pass that file down to the browser for a user to download w...

Virus Scanning of Binaries -- Blobs vs. Files

Virus Scanning of Binaries -- Blobs vs. Files There has been a lot of discussion on SO about using blobs vs. files to store binaries, but the current issue I'm facing involves virus scanning. There ar...

23 Dec at 16:8

Create a blob storage container programmatically

Create a blob storage container programmatically I have a requirement whereby on creation of a company an associated blob storage container is created in my storageaccount with the container name set ...

Angular: How to download a file from HttpClient?

Angular: How to download a file from HttpClient? I need download an excel from my backend, its returned a file. When I do the request I get the error: > TypeError: You provided 'undefined' where a str...

How do I get textual contents from BLOB in Oracle SQL

How do I get textual contents from BLOB in Oracle SQL I am trying to see from an SQL console what is inside an Oracle BLOB. I know it contains a somewhat large body of text and I want to just see the ...

6 May at 08:41

Blob Code download much slower than MS Azure Storage Explorer

Blob Code download much slower than MS Azure Storage Explorer I'm downloading a blob from blob storage that is 1GB in size. If I use MS Azure storage explorer it takes under 10 minutes (I have a 20 me...

1 Jan at 10:6

How read all files from azure blob storage in C# Core

How read all files from azure blob storage in C# Core I want to read files from an azure blob storage (the files inside the folder), the blob storage contains many folders. I want to read my folder 'b...

How to get file from Azure storage blob in a ByteArray format using Azure.Storage.Blobs in C#

How to get file from Azure storage blob in a ByteArray format using Azure.Storage.Blobs in C# I have a requirement to get the files from Azure storage in the byte array format using new package Azure....

Microsoft Azure: How to create sub directory in a blob container

Microsoft Azure: How to create sub directory in a blob container How to create a sub directory in a blob container for example, in my blob container [http://veda.blob.core.windows.net/document/](http:...

20 Jun at 09:12

How to replace Microsoft.WindowsAzure.Storage with Microsoft.Azure.Storage.Blob

How to replace Microsoft.WindowsAzure.Storage with Microsoft.Azure.Storage.Blob In my asp.net mvc application I am using Microsoft.WindowsAzure.Storage 8.0.1 for uploading/downloading blob to/from an ...

How to get a list of all folders in an container in Blob Storage?

How to get a list of all folders in an container in Blob Storage? I am using Azure Blob Storage to store some of my files away. I have them categorized in different folders. So far I can get a list of...

Saving binary data as file using JavaScript from a browser

Saving binary data as file using JavaScript from a browser I am working on a business application using `angularJS`. One of my service method returning me a `byte[]` (inclding PDF file content) now i ...

30 Nov at 19:42

How to convert Blob to File in JavaScript

How to convert Blob to File in JavaScript I need to upload an image to NodeJS server to some directory. I am using `connect-busboy` node module for that. I had the `dataURL` of the image that I conver...

15 Nov at 18:13

Upload string to Azure Blob

Upload string to Azure Blob I have had a look at this following code to upload a string to azure blob. my task requirement does not allow me to store the string as a file. ```csharp static void SaveTe...

2 May at 02:46

Azure downloadtostreamasync method hangs

Azure downloadtostreamasync method hangs here is the offending code ``` public async static Task AsyncReadBlob(string identifier) { CloudStorageAccount storageAccount = CloudStorageAccount.Parse...

AzureStorage Blob Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature

AzureStorage Blob Server failed to authenticate the request. Make sure the value of Authorization header is formed correctly including the signature I'm trying to upload a image in Windows Azure Blob ...

15 Jan at 00:46

How to get a Shared Access Signature on a Blob using the latest Azure SDK .NET API v12?

How to get a Shared Access Signature on a Blob using the latest Azure SDK .NET API v12? I used to be able to create a shared access signature on a Blob using the v11 Azure SDK API, like this: ``` var ...

Copying BLOB values between databases with pure SQL in SQL Server

Copying BLOB values between databases with pure SQL in SQL Server I need to pull some BLOB data from a SQL Server 2005 database and generate a SQL script to insert this same data in another database, ...

Handling FileContentResult when file is not found

Handling FileContentResult when file is not found I have a controller action that downloads a file from an azure blob based on the container reference name (i.e. full path name of the file in the blob...

how to store Image as blob in Sqlite & how to retrieve it?

how to store Image as blob in Sqlite & how to retrieve it? I want to store an image(from url) into a sqlite database. For that I use: ``` db = new DataBase(getApplicationContext()); URL url = new URL(...

27 Aug at 14:27

Uploading blockblob and setting contenttype

Uploading blockblob and setting contenttype I'm using `Microsoft.WindowsAzure.Storage.*` library from C#. This is how I'm uploading things to storage: ``` // Store in storage CloudStorageAccount stora...

CloudBlob.DownloadToStream returns null

CloudBlob.DownloadToStream returns null I'm trying to download a file from cloudBlob via stream. I refer to this article [CloudBlob](http://jeanpaulva.com/category/azure/) Here is the code to downloa...

5 Jun at 07:10