打开资源管理器
System.Diagnostics.Process.Start("explorer");
打开资源管理器的指定文件夹
System.Diagnostics.Process.Start("explorer", "/e," + "文件夹路径");
打开资源管理器的指定文件夹,并选择指定文件
System.Diagnostics.Process.Start("explorer", "/e,/select," + "文件路径");
标签:Process,explorer,C#,System,Start,Diagnostics,打开,资源管理 From: https://www.cnblogs.com/smartnn/p/16775258.html