当前位置 : 主页 > 编程语言 > c语言 >

C# 打开文件/跳转链接

来源:互联网 收集:自由互联 发布时间:2021-06-25
mark一下~ 打开文件 1.打开文件夹 : System.Diagnostics.Process.Start(FilePath);-- 打开文件夹System.Diagnostics.Process.Start(FilePath + " / " +FileName); -- 打开文件夹中某个文件 2.用IE打开文件: System.Diagnost

mark一下~

打开文件

1.打开文件夹

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

2.用IE打开文件:

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

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

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

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

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

跳转链接

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