欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#搜索文字在文件及文件夹中出现位置的方法

程序员文章站 2023-10-23 21:39:40
本文实例讲述了c#搜索文字在文件及文件夹中出现位置的方法。分享给大家供大家参考。具体如下: 在linux中查询文字在文件中出现的位置,或者在一个文件夹中出现的位置,用命令...

本文实例讲述了c#搜索文字在文件及文件夹中出现位置的方法。分享给大家供大家参考。具体如下:

在linux中查询文字在文件中出现的位置,或者在一个文件夹中出现的位置,用命令:

复制代码 代码如下:
grep -n '需要查询的文字' *

就可以了。今天做了一个c#程序,专门用来找出一个指定字符串在文件中的位置,与一个指定字符串在一个文件夹中所有的出现位置。

一、程序代码

using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
namespace search
{
 class program
 {
 static void main(string[] args)
 {
  if (args.length != 3 || (args[0] != "file" && args[0] != "folder"))
  {
  console.writeline("correct order style: ");
  console.writeline("search file/folder address word");
  }
  switch (args[0])
  {
  case "file": //从文件中查找
   {
   if (system.io.file.exists(args[1]))
   {
    findinfile(args[1], args[2]);
   }
   else
   {
    console.writeline(string.format(
    "file {0} not exist!", args[1]));
   }
   }
   break;
  case "folder": //从文件夹中查找(包括其中全部文件)
   {
   if (system.io.directory.exists(args[1]))
   {
    findindirectory(args[1], args[2]);
   }
   else
   {
    console.writeline(string.format(
    "directory {0} not exist!", args[1]));
   }
   }
   break;
  default: break;
  }
  console.writeline("output finished.");
  console.readline();
 }
 /// <summary>
 /// 从文件中找关键字
 /// </summary>
 /// <param name="filename"></param>
 /// <param name="word"></param>
 public static void findinfile(string filename, string word)
 {
  system.io.streamreader sr = system.io.file.opentext(filename);
  string s = sr.readtoend();
  sr.close();
  string[] temp = s.split('\n');
  for (int i = 0; i < temp.length; i++)
  {
  if (temp[i].indexof(word) != -1)
  {
   console.writeline(string.format(
   "found in: {0}\n{1}\nline: {2} \n",
   filename, temp[i].trim(), i + 1));
  }
  }
 }
 /// <summary>
 /// 从文件夹中找关键字
 /// </summary>
 /// <param name="foldername"></param>
 /// <param name="word"></param>
 public static void findindirectory(string foldername, string word)
 {
  system.io.directoryinfo dif = new system.io.directoryinfo(foldername);
  //遍历文件夹中的各子文件夹
  foreach (system.io.directoryinfo di in dif.getdirectories())
  {
  findindirectory(di.fullname, word);
  }
  //查询文件夹中的各个文件
  foreach (system.io.fileinfo f in dif.getfiles())
  {
  findinfile(f.fullname, word);
  }
 }
 }
}

二、运行示例

查找文件 e:\testprogram\search\search\program.cs 中所有的 console
在程序search.exe所在目录下,输入命令:search file/folder 地址 要查找的字符串

C#搜索文字在文件及文件夹中出现位置的方法

三、关于vs测试带有输入参数的程序

在项目属性→调试选项卡→启动选项→命令行参数,把参数输入进去就可以了

C#搜索文字在文件及文件夹中出现位置的方法

希望本文所述对大家的c#程序设计有所帮助。