4

大家好,我目前通过这个电话获得了我想要的子目录:

foreach (DirectoryInfo dir in parent)
      {
        try
        {
          subDirectories = dir.GetDirectories().Where(d => d.Exists == true).ToArray();
        }
        catch(UnauthorizedAccessException e)
        {
          Console.WriteLine(e.Message);
        }
        foreach (DirectoryInfo subdir in subDirectories)
        {
          Console.WriteLine(subdir);
          var temp = new List<DirectoryInfo>();
          temp = subdir.GetDirectories("*", SearchOption.AllDirectories).Where(d => reg.IsMatch(d.Name)).Where((d => !d.FullName.EndsWith("TESTS"))).Where(d => !(d.GetDirectories().Length == 0 && d.GetFiles().Length == 0)).Where(d => d.GetFiles().Length > 3).ToList();
          candidates.AddRange(temp);
        }
      }

      foreach(DirectoryInfo dir in candidates)
      {
        Console.WriteLine(dir);
      }

所以现在我的问题是我的最终列表称为候选人我什么也没得到,因为我遇到了访问问题,因为我在 try 块中的子目录文件夹中有一个名为 lost+found 的文件夹。我尝试使用 try 和 catch 来处理异常,所以我可以继续检查我实际上并不关心这个文件夹,我试图忽略它,但我不知道如何从我的 get 目录搜索中忽略它想法?我已经尝试使用 .where 进行过滤以忽略包含文件夹名称的任何文件夹,但这不起作用,它只是在文件夹名称处停止了我的程序。

4

2 回答 2

2

我对这个异常UnauthorizedAccessException

http://www.blackwasp.co.uk/FolderRecursion.aspx

简短的报价:

...其中的关键是可以配置您尝试读取的某些文件夹,以便当前用户可能无法访问它们。该方法不会忽略您限制访问的文件夹,而是引发 UnauthorizedAccessException。但是,我们可以通过创建自己的递归文件夹搜索代码来规避这个问题。...

解决方案:

private static void ShowAllFoldersUnder(string path, int indent)
{
    try
    {
        foreach (string folder in Directory.GetDirectories(path))
        {
            Console.WriteLine("{0}{1}", new string(' ', indent), Path.GetFileName(folder));
            ShowAllFoldersUnder(folder, indent + 2);
        }
    }
    catch (UnauthorizedAccessException) { }
}
于 2017-07-31T20:09:10.120 回答
1

您可以像 Microsoft 解释的那样使用递归:link

于 2016-05-25T15:57:02.743 回答