gpt4 book ai didi

c# - Azure存储找不到csv文件

转载 作者:行者123 更新时间:2023-12-03 04:15:29 25 4
gpt4 key购买 nike

我正在尝试从我的 Azure 存储帐户读取 csv 文件。将每一行转换为一个对象并构建这些对象的列表。它一直出错,原因是找不到文件(找不到 Blob)。文件就在那里,它是一个 csv 文件。

File in azure storage

错误:

StorageException: The specified blob does not exist. BatlGroup.Site.Services.AzureStorageService.AzureFileMethods.ReadCsvFileFromBlobAsync(CloudBlobContainer container, string fileName) in AzureFileMethods.cs + await blob.DownloadToStreamAsync(memoryStream);

 public async Task<Stream> ReadCsvFileFromBlobAsync(CloudBlobContainer container, string fileName)
{
// Retrieve reference to a blob (fileName)
var blob = container.GetBlockBlobReference(fileName);

using (var memoryStream = new MemoryStream())
{
//downloads blob's content to a stream
await blob.DownloadToStreamAsync(memoryStream);
return memoryStream;

}

}

我已确保该文件是公开的。我可以下载存储在那里的任何文本文件,但不能下载 csv 文件。

我也不确定采用什么格式,因为我需要遍历这些行。

我看到了将整个文件保存到临时驱动器并在那里使用它的示例,但这似乎效率低下,因为那时我可以将文件存储在 wwroot 文件夹而不是 azure 中。

从 Azure 存储读取 csv 文件的最合适方法是什么。

最佳答案

关于如何逐行迭代,拿到内存流后,可以使用StreamReader逐行读取。

示例代码如下:

using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Blob;
using System;
using System.IO;

namespace ConsoleApp17
{
class Program
{
static void Main(string[] args)
{
string connstr = "your connection string";
CloudStorageAccount storageAccount = CloudStorageAccount.Parse(connstr);
CloudBlobClient blobClient = storageAccount.CreateCloudBlobClient();
CloudBlobContainer container = blobClient.GetContainerReference("t11");
CloudBlockBlob blockBlob = container.GetBlockBlobReference("students.csv");
string text="";
string temp = "";
using (var memoryStream = new MemoryStream())
{
blockBlob.DownloadToStream(memoryStream);

//remember set the position to 0
memoryStream.Position = 0;
using (var reader = new StreamReader(memoryStream))
{
//read the csv file as per line.
while (!reader.EndOfStream && !string.IsNullOrEmpty(temp=reader.ReadLine()))
{
text = text + "***" + temp;
}

}


}

Console.WriteLine(text);
Console.WriteLine("-------");
Console.ReadLine();
}
}
}

我的 csv 文件: enter image description here

测试结果: enter image description here

关于c# - Azure存储找不到csv文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53375193/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com