Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure storage: Uploaded files with size zero bytes

When I upload an image file to a blob, the image is uploaded apparently successfully (no errors). When I go to cloud storage studio, the file is there, but with a size of 0 (zero) bytes.

The following is the code that I am using:

// These two methods belong to the ContentService class used to upload // files in the storage. public void SetContent(HttpPostedFileBase file, string filename, bool overwrite) {     CloudBlobContainer blobContainer = GetContainer();     var blob = blobContainer.GetBlobReference(filename);      if (file != null)     {         blob.Properties.ContentType = file.ContentType;         blob.UploadFromStream(file.InputStream);     }     else     {         blob.Properties.ContentType = "application/octet-stream";         blob.UploadByteArray(new byte[1]);     } }  public string UploadFile(HttpPostedFileBase file, string uploadPath) {     if (file.ContentLength == 0)     {         return null;     }      string filename;     int indexBar = file.FileName.LastIndexOf('\\');     if (indexBar > -1)     {         filename = DateTime.UtcNow.Ticks + file.FileName.Substring(indexBar + 1);     }     else     {         filename = DateTime.UtcNow.Ticks + file.FileName;     }     ContentService.Instance.SetContent(file, Helper.CombinePath(uploadPath, filename), true);     return filename; }  // The above code is called by this code. HttpPostedFileBase newFile = Request.Files["newFile"] as HttpPostedFileBase; ContentService service = new ContentService(); blog.Image = service.UploadFile(newFile, string.Format("{0}{1}", Constants.Paths.BlogImages, blog.RowKey)); 

Before the image file is uploaded to the storage, the Property InputStream from the HttpPostedFileBase appears to be fine (the size of the of image corresponds to what is expected! And no exceptions are thrown).

And the really strange thing is that this works perfectly in other cases (uploading Power Points or even other images from the Worker role). The code that calls the SetContent method seems to be exactly the same and file seems to be correct since a new file with zero bytes is created at the correct location.

Does any one have any suggestion please? I debugged this code dozens of times and I cannot see the problem. Any suggestions are welcome!

Thanks

like image 676
Fabio Milheiro Avatar asked May 25 '10 14:05

Fabio Milheiro


People also ask

Why is my uploaded file 0 bytes?

Zero-byte files can occur when file transfers do not complete successfully. This may happen when a file is incompletely downloaded via the Web or an FTP (file transfer protocol) client, or when an email attachment is not transmitted correctly. The result may be a file that has a name, but no data.

How do I know if my Azure Blob Storage upload was successful?

Is there any way to check the status of a blob upload? If no exception throws from your code, it means the blob has been uploaded successfully.

How do I store large files in Azure?

Open the Azure portal, and navigate to the storage account where you want to enable large file shares. Open the storage account and select File shares. Select Enabled on Large file shares, and then select Save.

What is the difference between blob and file storage in Azure?

What is the difference between blob and file storage? Azure Blob Storage is an object store used for storing vast amounts unstructured data, while Azure File Storage is a fully managed distributed file system based on the SMB protocol and looks like a typical hard drive once mounted.


1 Answers

The Position property of the InputStream of the HttpPostedFileBase had the same value as the Length property (probably because I had another file previous to this one - stupid I think!).

All I had to do was to set the Position property back to 0 (zero)!

I hope this helps somebody in the future.

like image 82
Fabio Milheiro Avatar answered Sep 19 '22 22:09

Fabio Milheiro