这里以前写xml模版批量修改工具时用到的。
Process pro = new Process();
pro.StartInfo.FileName = "Explorer.exe";
pro.StartInfo.Arguments = "/select," + fileCurrentPath;
pro.Start();
pro.StartInfo.FileName = "Explorer.exe";
pro.StartInfo.Arguments = "/select," + fileCurrentPath;
pro.Start();