打开资源管理器
//文件浏览器打开某个目录
//直接打开资源管理器(打开默认首页)
System.Diagnostics.Process.Start("Explorer.exe");
//资源管理器打开某个目录
System.Diagnostics.Process.Start("Explorer.exe", "E:\\");
//资源管理器打开某个文件
System.Diagnostics.Process.Start("Explorer.exe", "E:\\555.txt");
//资源管理器浏览选中某个文件
System.Diagnostics.Process.Start("Explorer.exe", "/select," + @"E:\555.txt");
打开IE浏览器
//直接打开IE浏览器(打开默认首页)
System.Diagnostics.Process.Start("Iexplore.exe");
//直接打开IE浏览器,打开指定页
System.Diagnostics.Process.Start("Iexplore.exe", "http://wwwblogs/kissdodog");
打开资源管理器
//文件浏览器打开某个目录
//直接打开资源管理器(打开默认首页)
System.Diagnostics.Process.Start("Explorer.exe");
//资源管理器打开某个目录
System.Diagnostics.Process.Start("Explorer.exe", "E:\\");
//资源管理器打开某个文件
System.Diagnostics.Process.Start("Explorer.exe", "E:\\555.txt");
//资源管理器浏览选中某个文件
System.Diagnostics.Process.Start("Explorer.exe", "/select," + @"E:\555.txt");
打开IE浏览器
//直接打开IE浏览器(打开默认首页)
System.Diagnostics.Process.Start("Iexplore.exe");
//直接打开IE浏览器,打开指定页
System.Diagnostics.Process.Start("Iexplore.exe", "http://wwwblogs/kissdodog");