我怎样才能使方法仅返回文件列表,而不返回目录
本文关键字:返回 列表 文件 方法 | 更新日期: 2023-09-27 17:55:48
In constructor. filePathList is List
filePathList = SearchAccessibleFilesNoDistinct(rootDirectory, null).ToList();
和 SearchAccessFilesNoDistinct 方法
IEnumerable<string> SearchAccessibleFilesNoDistinct(string root, List<string> files)
{
if (files == null)
files = new List<string>();
if (Directory.Exists(root))
{
foreach (var file in Directory.EnumerateFiles(root))
{
string ext = Path.GetExtension(file);
if (!files.Contains(file) && ext == textBox2.Text)
{
files.Add(file);
}
}
foreach (var subDir in Directory.EnumerateDirectories(root))
{
try
{
SearchAccessibleFilesNoDistinct(subDir, files);
files.Add(subDir);
}
catch (UnauthorizedAccessException ex)
{
// ...
}
}
}
return files;
}
然后我在列表文件路径列表上做循环
foreach (string file in filePathList)
{
try
{
_busy.WaitOne();
if (worker.CancellationPending == true)
{
e.Cancel = true;
return;
}
bool reportedFile = false;
for (int i = 0; i < textToSearch.Length; i++)
{
if (File.ReadAllText(file).IndexOf(textToSearch[i], StringComparison.InvariantCultureIgnoreCase) >= 0)
{
resultsoftextfound.Add(file + " " + textToSearch[i]);
if (!reportedFile)
{
numberoffiles++;
MyProgress myp = new MyProgress();
myp.Report1 = file;
myp.Report2 = numberoffiles.ToString();
myp.Report3 = textToSearch[i];
backgroundWorker1.ReportProgress(0, myp);
reportedFile = true;
}
}
}
numberofdirs++;
label1.Invoke((MethodInvoker)delegate
{
label1.Text = numberofdirs.ToString();
label1.Visible = true;
});
}
catch (Exception)
{
restrictedFiles.Add(file);
numberofrestrictedFiles ++;
label11.Invoke((MethodInvoker)delegate
{
label11.Text = numberofrestrictedFiles.ToString();
label11.Visible = true;
});
continue;
}
问题是在捕获部分中,受限制的文件只是目录而不是文件。由于 filePathList 包含文件和目录,当它尝试在目录中搜索时,它会到达捕获。它不是一个受限制的文件,它只是目录,根本不是文件。
这就是为什么我认为SearchAccessFilesNoDistinct方法应该只返回没有目录的文件作为项目。
例如,在 filePathList 中,我在索引 0 中看到:
C:''temp
在索引 1 中
C:''temp''help.txt
索引 0 中的第一项将作为受限文件进入 catch,而第二项不会。
您有此循环来搜索搜索子目录:
foreach (var subDir in Directory.EnumerateDirectories(root))
{
try
{
SearchAccessibleFilesNoDistinct(subDir, files);
files.Add(subDir); <--- remove this line
}
catch (UnauthorizedAccessException ex)
{
// ...
}
}
删除将子目录添加到文件列表的行。我已经在上面的代码中标记了它。
你在寻找:
Directory.GetFiles(rootDir,"*.*", SearchOption.AllDirectories);
?将 更改为仅遮罩表单文本框。