|
先晒上代码:
try
{
DirectoryInfo dicInfo = new DirectoryInfo(System.Environment.GetFolderPath(Environment.SpecialFolder.Desktop));
//获取指定的后缀名
FileInfo[] textFiles = dicInfo.GetFiles(textBox4.Text+".lnk", SearchOption.TopDirectoryOnly);
foreach (FileInfo fileInfo in textFiles)
{
//消息测试
//MessageBox.Show(fileInfo.FullName);
Process.Start(fileInfo.FullName);
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
我的目的是想通过txtBox里输入 一个软件的名称 并打开、代码实现了、但不足之处就是 一定要 全称、比如我想打开QQ、必须要 打 腾讯QQ 、我想求助:如果通过模糊查询、直接输QQ就打开?
|
|