如何扫描目录中的 csv 文件以及我在 asp.net 中编写的解析器?
我在代码隐藏文件中编写了一个解析器函数,它将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这就是您正在寻找的:
请记住,如果您在 ASP.NET 中执行此操作,工作进程标识(通常是网络服务)将至少需要对您要搜索的文件夹的读取权限如果它位于网络根路径之外。
I think this is what you're looking for:
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.