C#如何打开一个文件夹并定位到某个文件

//explorer /select,"c:/windows/notepad.exe"

  ProcessStartInfo psi = new ProcessStartInfo("Explorer.exe");
  string file = @"c:/windows/notepad.exe";
  psi.Arguments = " /select," + file;
  Process.Start(psi);

 

原文:http://topic.csdn.net/u/20101104/09/02b12763-7dfa-4a2e-8d69-b93048956bee.html?35797

你可能感兴趣的:(c,String,C#,File,2010)