System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "explorer.exe";
p.StartInfo.Arguments =(@" /select,"+path);
p.Start();
05-11 22:00