打开文件夹:

1 System.Diagnostics.Process.Start(FilePath);

打开文件夹中某个文件:

1 System.Diagnostics.Process.Start(FilePath+"/"+FileName);

 

打开文件夹并选中单个文件:

1 System.Diagnostics.Process.Start("Explorer""/select,"+ FilePath+"\\"+FileName);

1 System.Diagnostics.Process.Start("Explorer.exe""/select,"+ FilePath+"\\"+FileName);

用IE打开文件:

1 System.Diagnostics.Process.Start("Explorer",FilePath+"\\"+FileName);

1 System.Diagnostics.Process.Start("Explorer.exe",FilePath+"\\"+FileName);

注:(explorer,explorer.exe,select,不区分大小写,”/selecet,”其中”/,”都不能少,FilePath为文件路径不包含文件名)

扩展提示:可以采用 Application.StartupPath 获得应用程序所在的目录。

相关文章:

  • 2021-09-15
  • 2021-12-08
  • 2021-11-04
  • 2022-01-16
  • 2021-12-01
猜你喜欢
  • 2021-08-22
  • 2022-12-23
  • 2022-12-23
  • 2021-10-16
  • 2021-11-30
相关资源
相似解决方案