Hi,
I am building a form that should become custom directory browser.How can I determine whether a selected ListView item is a file or a folder?
private
{
//If the sItem is a file then run the File Process.Start(sProjectsPath + "\\" + sDir + "\\" + sItem);
//If the sItem is a folder then open the folder in ListView }
catch (Exception Exc) { MessageBox.Show(Exc.ToString()); }
}