Hi everyone
Is my first time trying to get the specific path of a directory please, Why I can not get the path of this program into my listview?
void MainFormLoad(object sender, EventArgs e)
{
listView1.View = View.Details;
listView1.GridLines = true;
listView1.FullRowSelect = true;
listView1.Columns.Add("Directory list:");
}
void Button1Click(object sender, EventArgs e)
{
string[] Path = Directory.GetFiles(@"C:\Windows\Microsoft.NET\",".dll",SearchOption.AllDirectories);
foreach (var list in Path){
var items = listView1.Items;
items.Add(list);
}
}
}
}
Loading

Posted Jul 26, 2013, 12:53 PM
Your search query is wrong.
string[] Path = Directory.GetFiles(@"C:\Windows\Microsoft.NET\","*.dll",SearchOption.AllDirectories);
When you want to filter all the dlls then you need to use *.dll. In your code, you used as ".dll" which will not return anything..
Hope this helps you. !
Freddy AbreuPosted Jul 26, 2013, 1:16 PM
Freddy AbreuPosted Jul 26, 2013, 10:59 AM