gpt4 book ai didi

c# - 遍历单词列表并搜索文件夹以查找包含该单词的文件

转载 作者:行者123 更新时间:2023-11-30 17:23:46 25 4
gpt4 key购买 nike

假设我有一个包含以下内容的文本文件 MyFile.txt:

hellosam
whatsup
mynameisjohn
etc...

我想遍历 MyFile.txt 中的每个单词,然后查看我本地的哪个文件文件夹 C:\myfolders\myallfiles 包含该词。

例如,我想查看哪个文件将包含对 hellosam 等的引用。

最佳答案

可能与此类似...这是伪代码。自己解决剩下的事情会更有趣。

string[] files = Directory.GetFiles("directorypath");

foreach (string s in files)
{
FileInfo file = new FileInfo(s);
StreamReader reader = file.OpenText();

if(reader.ReadToEnd().Contains("string you are looking for"))
{
return true;
}
}

关于c# - 遍历单词列表并搜索文件夹以查找包含该单词的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1885426/

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