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

c#打开指定设备程序以及网址

时间:2014-12-09 17:29:00      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:style   http   ar   color   os   sp   文件   art   ad   

//打开计算器
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.FileName = @"C:\WINDOWS\system32\notepad.exe";//devmgmt.msc笔记:notepad 计算器:calc.exe
Process.Start(startInfo);
//设备管理器
Process.Start("devmgmt.msc");
//打开指定文件夹窗口
string path = @"E:\";
System.Diagnostics.Process.Start("explorer.exe", path);
//打开指定网页
Process.Start("http://www.baidu.com/");

//打开我的电脑
Process.Start("explorer", "/n,/select, C:\\");

c#打开指定设备程序以及网址

标签:style   http   ar   color   os   sp   文件   art   ad   

原文地址:http://www.cnblogs.com/fx427103/p/4153541.html

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