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...
- Modified
- 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...
- Modified
- 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...
- Modified
- 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...
- Modified
- 18 Dec at 20:9
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 ...
- Modified
- 1 Nov at 13:0
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...
- Modified
- 4 Sep at 18:1
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 ...
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...
- Modified
- 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...
- Modified
- 4 Jul at 09:48
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....
- Modified
- 2 Dec at 21:53
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:...
- Modified
- 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 ...
- Modified
- 3 Oct at 15:16
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...
- Modified
- 26 May at 17:15
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 ...
- Modified
- 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...
- Modified
- 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...
- Modified
- 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...
- Modified
- 15 Feb at 12:54
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 ...
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 ...
- Modified
- 15 Nov at 12:10
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, ...
- Modified
- 7 Nov at 12:55
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...
- Modified
- 23 Jun at 07:7
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(...
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...
- Modified
- 7 Jul at 23:47
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...
- Modified
- 5 Jun at 07:10