softpcapps Software
CODE HELP BLOG
private void OpenAndSelectFileInWindowsExplorer(string filepath)
{
string args = string.Format("/e, /select, \"{0}\"", filepath);
System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo();
info.FileName = "explorer";
info.UseShellExecute = true;
info.Arguments = args;
System.Diagnostics.Process.Start(info);
}