C#如何打开选中的文件夹并指向选中的文件
打开选中的文件夹
System.Diagnostics.Process.Start("explorer.exe", filePath);
打开选中的文件夹并指向选中的文件
System.Diagnostics.Process.Start("explorer.exe", "/select," + filePath);
打开选中的文件夹
System.Diagnostics.Process.Start("explorer.exe", filePath);
打开选中的文件夹并指向选中的文件
System.Diagnostics.Process.Start("explorer.exe", "/select," + filePath);