Azure存储:上载的文件大小为零字节

时间:2010-05-25 14:48:14

标签: file-upload azure azure-storage-blobs

当我将图像文件上传到blob时,图像上传显然成功(没有错误)。当我去云存储工作室时,文件就在那里,但是大小为0(零)字节。

以下是我正在使用的代码:

// 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));

在将图像文件上传到存储之前,来自HttpPostedFileBase的Property InputStream看起来很好(图像的大小与预期的一致!并且不会抛出任何异常)。

真正奇怪的是,这在其他情况下非常有效(从Power角色上传Power Points甚至其他图片)。调用SetContent方法的代码似乎完全相同,文件似乎是正确的,因为在正确的位置创建了一个零字节的新文件。

有人有任何建议吗?我调试了这个代码几十次,我看不出问题。欢迎任何建议!

由于

2 个答案:

答案 0 :(得分:49)

HttpPostedFileBase的InputStream的Position属性与Length属性具有相同的值(可能是因为我之前有另一个文件 - 我觉得这很愚蠢!)。

我所要做的就是将Position属性设置回0(零)!

我希望将来可以帮助某人。

答案 1 :(得分:22)

感谢Fabio提出并解决您自己的问题。我只是想为你所说的内容添加代码。你的建议对我很有用。

        var memoryStream = new MemoryStream();

        // "upload" is the object returned by fine uploader
        upload.InputStream.CopyTo(memoryStream);
        memoryStream.ToArray();

// After copying the contents to stream, initialize it's position
// back to zeroth location

        memoryStream.Seek(0, SeekOrigin.Begin);

现在您已准备好使用以下内容上传memoryStream:

blockBlob.UploadFromStream(memoryStream);