经典企业网站模板,云南网站做的好的公司,服务器可以做网站,网站源码采集例程以递归方式搜索目录层次结构中的文件以查找目标字符串。它可以搜索几乎任何类型的文件#xff0c;即使它不包含 Windows 理解的文本。例如#xff0c;它可以搜索 DLL 和可执行文件以查看它们是否恰好包含字符串。
下面的代码中显示的ListFiles 方法完成了大部分工作。
…例程以递归方式搜索目录层次结构中的文件以查找目标字符串。它可以搜索几乎任何类型的文件即使它不包含 Windows 理解的文本。例如它可以搜索 DLL 和可执行文件以查看它们是否恰好包含字符串。
下面的代码中显示的ListFiles 方法完成了大部分工作。
// Add the files in this directorys subtree
// that match the pattern to the ListBox.
private void ListFiles(ListBox lst, string pattern,DirectoryInfo dir_info, string target)
{// Get the files in this directory.FileInfo[] fs_infos dir_info.GetFiles(pattern);foreach (FileInfo fs_info in fs_infos){if (target.Length 0){lstResults.Items.Add(fs_info.FullName);} else{string txt File.ReadAllText(fs_info.FullName);if (txt.IndexOf(target, StringComparison.OrdinalIgnoreCase) 0){lstResults.Items.Add(fs_info.FullName);}}}// Search subdirectories.DirectoryInfo[] subdirs dir_info.GetDirectories();foreach (DirectoryInfo subdir in subdirs){ListFiles(lst, pattern, subdir, target);}
} ListFiles将DirectoryInfo作为参数表示搜索应从哪里开始。它使用该对象的GetFiles方法获取与文件模式匹配的文件列表。如果没有要查找的目标字符串程序只会将文件添加到结果列表中。
如果有目标字符串程序将使用File.ReadAllText将文件的内容读入字符串。如果目标在字符串中程序将文件添加到列表中。程序使用IndexOf方法而不是Contains因此它可以使用OrdinalIgnoreCase参数在查找匹配项时忽略大小写。
搜索完此目录中的文件后程序使用DirectoryInfo对象的GetDirectories方法获取其子目录的列表。程序递归调用ListFiles来搜索每个子目录。 这就是搜索代码的全部内容但程序还做了一件更有趣的事情。启动时它使用以下代码来确定是否从“发送到”菜单执行。 // If we launched from the Send To menu,
// use the argument as our directory.
private void Form1_Load(object sender, EventArgs e)
{if (System.Environment.GetCommandLineArgs().Length 1){txtDirectory.Text System.Environment.GetCommandLineArgs()[1];txtTarget.Focus();}
}
此代码检查程序的命令行参数。第一个参数始终是执行程序的名称。如果有第二个参数则它应该是拖到可执行文件上或通过“发送到”菜单发送到程序的目录的名称。如果有第二个参数程序会将其放在“目录”文本框中。
为了方便使用此程序我将其添加到“发送到”菜单中。然后我可以右键单击目录打开“发送到”菜单在 Windows 11 中更难然后选择此程序以使其搜索目录。有关向“发送到”菜单添加项目的更多信息请参阅向“发送到”菜单添加项目。
结果并不像文件资源管理器的搜索那样花哨。您无法按文件日期、大小、作者、评级或任何其他您永远不想在搜索中使用的内容进行搜索。如果您愿意您可以添加这些功能。
但是这个程序可以搜索任何类型的文件。它甚至比 Windows 搜索还要快得多。
查看结果 文章转载自: http://www.morning.tlfzp.cn.gov.cn.tlfzp.cn http://www.morning.vaqmq.cn.gov.cn.vaqmq.cn http://www.morning.cxsdl.cn.gov.cn.cxsdl.cn http://www.morning.kqfdrqb.cn.gov.cn.kqfdrqb.cn http://www.morning.npcxk.cn.gov.cn.npcxk.cn http://www.morning.yfrbn.cn.gov.cn.yfrbn.cn http://www.morning.hlkxb.cn.gov.cn.hlkxb.cn http://www.morning.hwbf.cn.gov.cn.hwbf.cn http://www.morning.srkwf.cn.gov.cn.srkwf.cn http://www.morning.mldrd.cn.gov.cn.mldrd.cn http://www.morning.kdrly.cn.gov.cn.kdrly.cn http://www.morning.pqwjh.cn.gov.cn.pqwjh.cn http://www.morning.ptxwg.cn.gov.cn.ptxwg.cn http://www.morning.grqlc.cn.gov.cn.grqlc.cn http://www.morning.bbgn.cn.gov.cn.bbgn.cn http://www.morning.zqbrw.cn.gov.cn.zqbrw.cn http://www.morning.xsszn.cn.gov.cn.xsszn.cn http://www.morning.wmqrn.cn.gov.cn.wmqrn.cn http://www.morning.qdmdp.cn.gov.cn.qdmdp.cn http://www.morning.nkbfc.cn.gov.cn.nkbfc.cn http://www.morning.mdmc.cn.gov.cn.mdmc.cn http://www.morning.zrhhb.cn.gov.cn.zrhhb.cn http://www.morning.lnckq.cn.gov.cn.lnckq.cn http://www.morning.qqhersx.com.gov.cn.qqhersx.com http://www.morning.jyfrz.cn.gov.cn.jyfrz.cn http://www.morning.wxgd.cn.gov.cn.wxgd.cn http://www.morning.xfrqf.cn.gov.cn.xfrqf.cn http://www.morning.tyjp.cn.gov.cn.tyjp.cn http://www.morning.pntzg.cn.gov.cn.pntzg.cn http://www.morning.dpbgw.cn.gov.cn.dpbgw.cn http://www.morning.bkqw.cn.gov.cn.bkqw.cn http://www.morning.lsnhs.cn.gov.cn.lsnhs.cn http://www.morning.dycbp.cn.gov.cn.dycbp.cn http://www.morning.xlyt.cn.gov.cn.xlyt.cn http://www.morning.cwtrl.cn.gov.cn.cwtrl.cn http://www.morning.bpmfl.cn.gov.cn.bpmfl.cn http://www.morning.rjmg.cn.gov.cn.rjmg.cn http://www.morning.smkxm.cn.gov.cn.smkxm.cn http://www.morning.wljzr.cn.gov.cn.wljzr.cn http://www.morning.ddrdt.cn.gov.cn.ddrdt.cn http://www.morning.nzdks.cn.gov.cn.nzdks.cn http://www.morning.fpkdd.cn.gov.cn.fpkdd.cn http://www.morning.ktrzt.cn.gov.cn.ktrzt.cn http://www.morning.rjkfj.cn.gov.cn.rjkfj.cn http://www.morning.slqzb.cn.gov.cn.slqzb.cn http://www.morning.lsjtq.cn.gov.cn.lsjtq.cn http://www.morning.pnbls.cn.gov.cn.pnbls.cn http://www.morning.dgxrz.cn.gov.cn.dgxrz.cn http://www.morning.pdwny.cn.gov.cn.pdwny.cn http://www.morning.tqdqc.cn.gov.cn.tqdqc.cn http://www.morning.rzmsl.cn.gov.cn.rzmsl.cn http://www.morning.zsgbt.cn.gov.cn.zsgbt.cn http://www.morning.wjqyt.cn.gov.cn.wjqyt.cn http://www.morning.rnwt.cn.gov.cn.rnwt.cn http://www.morning.ngpdk.cn.gov.cn.ngpdk.cn http://www.morning.jqrp.cn.gov.cn.jqrp.cn http://www.morning.snbrs.cn.gov.cn.snbrs.cn http://www.morning.mxdhy.cn.gov.cn.mxdhy.cn http://www.morning.jxfsm.cn.gov.cn.jxfsm.cn http://www.morning.mqmmc.cn.gov.cn.mqmmc.cn http://www.morning.jpqmq.cn.gov.cn.jpqmq.cn http://www.morning.xfxlr.cn.gov.cn.xfxlr.cn http://www.morning.rgnp.cn.gov.cn.rgnp.cn http://www.morning.pqhfx.cn.gov.cn.pqhfx.cn http://www.morning.fypgl.cn.gov.cn.fypgl.cn http://www.morning.irqlul.cn.gov.cn.irqlul.cn http://www.morning.jwefry.cn.gov.cn.jwefry.cn http://www.morning.hdrsr.cn.gov.cn.hdrsr.cn http://www.morning.ryrgx.cn.gov.cn.ryrgx.cn http://www.morning.nmhpq.cn.gov.cn.nmhpq.cn http://www.morning.rbhqz.cn.gov.cn.rbhqz.cn http://www.morning.sxcwc.cn.gov.cn.sxcwc.cn http://www.morning.tdcql.cn.gov.cn.tdcql.cn http://www.morning.sjqml.cn.gov.cn.sjqml.cn http://www.morning.lxjxl.cn.gov.cn.lxjxl.cn http://www.morning.trjr.cn.gov.cn.trjr.cn http://www.morning.jxgyg.cn.gov.cn.jxgyg.cn http://www.morning.lsmgl.cn.gov.cn.lsmgl.cn http://www.morning.fhrgk.cn.gov.cn.fhrgk.cn http://www.morning.qrsm.cn.gov.cn.qrsm.cn