如何扫描目录中的 csv 文件以及我在 asp.net 中编写的解析器?

发布于 2024-09-19 23:39:06 字数 438 浏览 3 评论 0原文

我在代码隐藏文件中编写了一个解析器函数,它将 csv 文件的文件名作为输入,并相应地解析数据。在当前场景中,我提供 csv 文件的名称。

在较新的场景中,我想扫描特定的本地目录中的 csv 文件,并将所有文件一一传递给解析器函数。

我当前的函数如下所示:

public List<string[]> parseCSVFile(string path)
{
  ...
}

并且我这样称呼它:

List<string[]> Data = parseCSVFile("C:\\Users\\joysteak\\Documents\\Visual Studio 2008\\WebSites\\Ingy\\data\\results2010.csv");

非常感谢任何帮助:)

I have a parser function written in my code-behind file, that takes as input the filename of a csv file, and parses the data accordingly. In the current scenario, I am supplying the name of the csv file.

In a newer scenario, I would like to scan a particular local directory for csv files, and pass all of them to the parser function one by one.

My current function looks like this:

public List<string[]> parseCSVFile(string path)
{
  ...
}

and I'm calling it like this:

List<string[]> Data = parseCSVFile("C:\\Users\\joysteak\\Documents\\Visual Studio 2008\\WebSites\\Ingy\\data\\results2010.csv");

Any help is much appreciated :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ˉ厌 2024-09-26 23:39:06

我认为这就是您正在寻找的:

string[] csvFiles = Directory.GetFiles("C:\\somedirectory", "*.csv");

foreach(string file in csvFiles)
{
   List<string[]> Data = parseCSVFle(file);
}

请记住,如果您在 ASP.NET 中执行此操作,工作进程标识(通常是网络服务)将至少需要对您要搜索的文件夹的读取权限如果它位于网络根路径之外。

I think this is what you're looking for:

string[] csvFiles = Directory.GetFiles("C:\\somedirectory", "*.csv");

foreach(string file in csvFiles)
{
   List<string[]> Data = parseCSVFle(file);
}

Keep in mind, if you're doing this in ASP.NET, the work process identity (usually NETWORK SERVICE) will need at least read permissions to the folder you're wanting to search if it's outside the web's root path.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文