这里以前写xml模版批量修改工具时用到的。
Process pro = new Process();
pro.StartInfo.FileName = "Explorer.exe";
pro.StartInfo.Arguments = "/select," + fileCurrentPath;
pro.Start();
定位到文件目录并选定文件
阅读 67
2022-08-15
这里以前写xml模版批量修改工具时用到的。
Process pro = new Process();
pro.StartInfo.FileName = "Explorer.exe";
pro.StartInfo.Arguments = "/select," + fileCurrentPath;
pro.Start();
相关推荐
精彩评论(0)