C#中另开进程打开文件夹并选中制定文件的操作
打开文件夹:System.Diagnostics.Process.Start(FilePath);
打开文件夹中某个文件:System.Diagnostics.Process.Start(FilePath+"/"+FileName);
打开文件夹并选中单个文件:System.Diagnostics.Process.Start("Explorer", "/select,"+ FilePath+"\\"+FileName);
打开文件夹:System.Diagnostics.Process.Start(FilePath);
打开文件夹中某个文件:System.Diagnostics.Process.Start(FilePath+"/"+FileName);
打开文件夹并选中单个文件:System.Diagnostics.Process.Start("Explorer", "/select,"+ FilePath+"\\"+FileName);