mark一下~

打开文件

1.打开文件夹

System.Diagnostics.Process.Start(FolderPath);-- 打开文件夹
System.Diagnostics.Process.Start(FolderPath+"/"+FileName); -- 打开文件夹中某个文件

2.使用资源管理器打开文件:

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

--"Explorer.exe",.exe可以省略

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

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

注:“/select”参数后面有逗号。

跳转链接

  • Process.Start(url); -- 默认浏览器
  • Process.Start("iexplore.exe", url);--IE浏览器

相关文章:

  • 2021-05-31
  • 2022-12-23
  • 2021-06-28
  • 2022-12-23
  • 2021-06-17
  • 2022-12-23
  • 2022-12-23
  • 2022-01-23
猜你喜欢
  • 2021-06-25
  • 2022-12-23
  • 2022-01-02
  • 2021-07-20
  • 2021-07-21
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案