本文介绍了C#get文件不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

不知道为什么这只是几个.txt文件并没有输出任何预期。



我尝试过:



No idea why this isnt working its just a couple of .txt files and no expection is being outputted.

What I have tried:

try
      {
          string[] array2 = Directory.GetFiles(@"C:\Users\Public\LSH\SearchingDB\", "*.txt");
          if (array2.Length == 0)
          {
              Console.WriteLine("No files found.");
          }
          foreach (string name in array2)
          {
              if (name.Contains(TextBox1.Text))
              {
                  Console.WriteLine(name);
              }
          }
      }
      catch (Exception excpt)
      {
          Console.WriteLine(excpt);
      }

推荐答案


这篇关于C#get文件不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-11 06:09