定位到指定文件夹
System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo("Explorer.exe");
psi.Arguments = "/e,/select," + fileFullName;
System.Diagnostics.Process.Start(psi);
定位到指定文件夹并打开文件
System.Diagnostics.Process.Start("Explorer.exe", m_path);