Net Core教程

C#查找指定路径下的所有指定文件,并读取

本文主要是介绍C#查找指定路径下的所有指定文件,并读取,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

string path="指定路径";

string filename =“需要查找的文件名.csv";

List<string> lineStringList = new List<string>();//存储所有读取到的文件

DirectoryInfo[] dateDirArr = new DirectoryInfo(path).GetDirectories(); //取指定路径下的所有目录

foreach (DirectoryInfo directoryInfo in dateDirArr)

{
string fullName = filePath + directoryInfo.Name + "\\" + filename;
if (!File.Exists(fullName))
{
continue;//目录下不存在此文件,返回。
}
FileInfo file = new FileInfo(fullName);
StreamReader reader = new StreamReader(file.FullName);
while (!reader.EndOfStream)//判断是否读取完成
{
lineStringList.Add(reader.ReadLine());
}
reader.Close();

}

这篇关于C#查找指定路径下的所有指定文件,并读取的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!