作者地址
//打开文件夹:
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);