本文介绍了如何使用c#查找文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想编写一个程序来查找c中的文件。
I want to write a program to find a file in c#
if (File.Exists(textBox1.Text))
{
MessageBox.Show(textBox1.Text + "was found in your system");
}
推荐答案
var myFiles = Directory.GetFiles(@"c:\some\directory\");
// OR
// Find all CS files in the directory
myFiles = Directory.GetFiles(@"c:\some\directory\", "*.cs");
参考:
[]
var allFiles = Directory.GetFiles(path, "*.xml", SearchOption.AllDirectories);
这篇关于如何使用c#查找文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!