gpt4 book ai didi

c# - 在文件中搜索文本时,我多次得到相同的结果,为什么?

转载 作者:太空宇宙 更新时间:2023-11-03 15:19:14 26 4
gpt4 key购买 nike

这是我用来搜索文件中文本的方法。

int tfiles = 0;
int tdirs = 0;
void WalkDirectoryTree(System.IO.DirectoryInfo root, string filesExtension, string textToSearch)
{
System.IO.FileInfo[] files = null;
System.IO.DirectoryInfo[] subDirs = null;
string[] workerResult = new string[4];
try
{
files = root.GetFiles(filesExtension);
tdirs ++;
workerResult[1] = root.FullName;
workerResult[3] = tdirs.ToString();
backgroundWorker1.ReportProgress(0,workerResult);
}
catch (UnauthorizedAccessException e)
{

}

catch (System.IO.DirectoryNotFoundException e)
{

}

if (files != null)
{
foreach (System.IO.FileInfo fi in files)
{
tfiles += files.Length;
if (files.Length > 0)
{
try
{
int Vara = File.ReadAllText(fi.FullName).Contains(textToSearch) ? 1 : 0;

if (Vara == 1)
{
workerResult[2] = files[0].FullName;
}
}
catch (FileNotFoundException e)
{

}
}
workerResult[0] = tfiles.ToString();
backgroundWorker1.ReportProgress(0, workerResult);
Thread.Sleep(100);
}
subDirs = root.GetDirectories();

foreach (System.IO.DirectoryInfo dirInfo in subDirs)
{
WalkDirectoryTree(dirInfo,filesExtension,textToSearch);
}
}
}

我在文件中搜索的部分:

if (files != null)
{
foreach (System.IO.FileInfo fi in files)
{
tfiles += files.Length;
if (files.Length > 0)
{
try
{
int Vara = File.ReadAllText(fi.FullName).Contains(textToSearch) ? 1 : 0;

if (Vara == 1)
{
workerResult[2] = files[0].FullName;
}
}
catch (FileNotFoundException e)
{

}
}
}
}

在 progresschanged 事件中:

private void backgroundWorker1_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
string[] results = (string[])e.UserState;
pbt.Value = e.ProgressPercentage;
pbt.Text = e.ProgressPercentage.ToString() + "%";
pbt.Invalidate();
label3.Text = results[0];
label2.Text = results[1];
label4.Text = results[3];
label3.Visible = true;
label2.Visible = true;
label4.Visible = true;
if (results[2] != null)
{
ListViewCostumControl.lvnf.Items.Add(results[2]);
}
}

问题是我多次在 ListViewCostumControl.lvnf 中看到每个结果,而不是只看到一次。

有时我连续 5 次或 7 次或 3 次看到结果,但我希望它只将每个结果添加到 listView 一次。

更新

我使用断点试图找出问题所在。我发现有时 listView 会添加相同的结果 (results[2]) 两次相同的目录相同的文件,例如具有相同目录的 Form1。

这是两次添加 Form1.cs 时的屏幕截图。

Form1 twice

您可以看到相同的目录和 Form1 两次。

好的,现在我检查了这个目录中的 Form1 文件,我看到文本 Form1 出现了 4 次。所以也许这就是问题所在?但是如果文本 Form1 在 Form1.cs 中出现 4 次,它会向我显示 Form1.cs 作为结果,有时一次,有时两次,为什么它不将相同的 Form1.cs 作为结果添加到 listView 4 次?

所以我需要找到如何做的另一件事是,如果在 cs 文件中有更多文本 Form1,那么仅在第一次在 Form1.cs 中看到它时将其报告给 listView

例如,在目录和文件 Form1 中说:D:\C-Sharp\1\ImagesPixelsColorsComparison\ImagesPixelsColorsComparison\ImagesPixelsColorsComparison\Form1.cs

在此 Form1.cs 中,文本 Form1 出现了 4 次。在第 3 行第 6 行第 44 行第 88 行然后我只想用 Form1 的第 3 行报告结果 [2] 一次。

所以在 listView 中我只会看到一次:D:\C-Sharp\1\ImagesPixelsColorsComparison\ImagesPixelsColorsComparison\ImagesPixelsColorsComparison\Form1.cs

有时我在 listView 中看到两次结果:

D:\C-Sharp\1\ImagesPixelsColorsComparison\ImagesPixelsColorsComparison\ImagesPixelsColorsComparison\Form1.cs

但有时我只在 listView 中看到一次:

D:\C-Sharp\1\ImagesPixelsColorsComparison\ImagesPixelsColorsComparison\ImagesPixelsColorsComparison\Form1.cs

无法弄清楚为什么结果 Form1.cs 显示两次添加到 listView。为什么不是4次?为什么不止一次?

我还在 WalkDirectoryTree 中将 for 循环更改为:

for (int i = 0; i < files.Length; i++)
{
tfiles += files.Length;
if (files.Length > 0)
{
try
{
if (File.ReadAllText(files[i].FullName).Contains(textToSearch))
{
workerResult[2] = files[i].FullName;
}
}
catch (FileNotFoundException e)
{
string nonono = "";
}
}
workerResult[0] = tfiles.ToString();
backgroundWorker1.ReportProgress(0, workerResult);
Thread.Sleep(100);
}

但它并没有改变很多与之前的 foreach 和 Vara 变量相同的问题。

我还将这一行从 files[0] 更改为 files[i]

workerResult[2] = files[i].FullName;

但是问题依然存在,和之前两次将Form1.cs添加到listView中一样。

最佳答案

很简单:

WalkDirectoryTree("C:\temp", "*.txt", "test") //Lets say you start like this

files = root.GetFiles(filesExtension) 这就是问题所在

这里你需要的是 SearchOption.TopDirectoryOnly 因为稍后当你使用

subDirs = root.GetDirectories();
foreach (System.IO.DirectoryInfo dirInfo in subDirs)
{
WalkDirectoryTree(dirInfo,filesExtension,textToSearch);
}

你搜索你已经得到的文件...

举个例子:

调用 WalkDirectoryTree("C:\temp", "*.txt", "test") 时我们假设您在 C:\temp 下有 3 个文件夹:

第一个调用会为您提供 C:\temp、C:\temp\01、C:\temp\02、C:\temp\03 中的所有文件

然后,您调用 foreach(System.IO.DirectoryInfo dirInfo in subDirs),在这里您会得到副本。

You use SearchOption.AllDirectories and delete the part where you enumerate the SubDirs.

旁注:

int Vara = File.ReadAllText(fi.FullName).Contains(textToSearch) ? 1 : 0;
if (Vara == 1)
{
workerResult[2] = files[0].FullName;
}

这不是检查文件是否包含文本的好方法,请这样做:

if (File.ReadAllText(fi.FullName).Contains(textToSearch))
{
workerResult[2] = files[0].FullName;
}

你真的不需要这里的 int。如果包含字符串,Contains() 将返回 bool 值 true,否则返回 false。

关于c# - 在文件中搜索文本时,我多次得到相同的结果,为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37846376/

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