string dir = path; dir = dir.Replace(@"/", @""); System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo("Explorer.exe"); psi.Arguments = "/e,/select," + dir; System.Diagnostics.Process.Start(psi);
string dir = path; dir = dir.Replace(@"/", @""); System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo("Explorer.exe"); psi.Arguments = "/e,/select," + dir; System.Diagnostics.Process.Start(psi);