C#打开指定目录,并将焦点放在指定文件上。相对路径(程序起动的目录)

      string basepath = AppDomain.CurrentDomain.BaseDirectory;
string filepath = "logs\\Log.log";
string path = basepath + filepath;
// System.Diagnostics.Process.Start("explorer.exe", path);
System.Diagnostics.ProcessStartInfo psi = new System.Diagnostics.ProcessStartInfo("Explorer.exe");
psi.Arguments = "/e,/select," + path;
System.Diagnostics.Process.Start(psi);
上一篇:Javascript学习笔记-基本概念-语法、关键字和保留字、变量


下一篇:51nod 1120 机器人走方格 V3 卡特兰数 lucas定理