0
点赞
收藏
分享

微信扫一扫

定位到文件目录并选定文件

这里以前写xml模版批量修改工具时用到的。

 

 

Process pro = new Process();
pro.StartInfo.FileName = "Explorer.exe";
pro.StartInfo.Arguments = "/select," + fileCurrentPath;
pro.Start(); 

 

 

举报

相关推荐

0 条评论