码迷,mamicode.com
首页 > Windows程序 > 详细

C# 打开文件/跳转链接

时间:2019-09-13 22:13:43      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:selector   参数   文件夹   filename   xpl   style   string   跳转   ring   

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浏览器

C# 打开文件/跳转链接

标签:selector   参数   文件夹   filename   xpl   style   string   跳转   ring   

原文地址:https://www.cnblogs.com/kybs0/p/11517524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!