// ProcessStartInfo
class MyProcess1
{
// Open the Internet Explorer application.
void OpenApplication(string myFavoritesPath)
{
// Start Internet Explorer. Default to the home page.
Process.Start("0516Caret.exe");
// Display the contents of the favorites folder in the browser.
Process.Start(myFavoritesPath);
}
// Opens urls and .html documents using Internet Explorer
void OpenWithArguments()
{
// url's are not considered documents. They can only be opened
// by passing them as arguments
Process.Start("C:\\Program Files\\Internet Explorer\\iexplore.exe", "wwww.baidu.com");
// Start a Web page using a browser associated whth .html ans .asp files
Process.Start("C:\\Program Files\\Internet Explorer\\iexplore.exe",
"D:\\InstallSoftware\\JavaScript\\code\\0423\\0423-9.html");
Process.Start("C:\\Program Files\\Internet Explorer\\iexplore.exe",
"http://blog.csdn.net/liangjisheng");
//Process.Start("C:\\Program Files\\Internet Explorer\\iexplore.exe",
// "D:\\InstallSoftware\\JavaScript\\code\\0423\\0423-9.asp");
}
// User the ProcessStartInfo class to start new processes, both in a
// minimized mode
void OpenWithStartInfo()
{
ProcessStartInfo startInfo = new ProcessStartInfo(
"C:\\Program Files\\Internet Explorer\\iexplore.exe");
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
Process.Start(startInfo);
startInfo.Arguments = "www.baidu.com";
Process.Start(startInfo);
}
static void Main()
{
// Get the path that stores favorite links.
string myFavoritePath = Environment.GetFolderPath(
Environment.SpecialFolder.Favorites);
MyProcess1 myProcess1 = new MyProcess1();
//myProcess1.OpenApplication(myFavoritePath);
//myProcess1.OpenWithArguments();
//myProcess1.OpenWithStartInfo();
}
}
ProcessStartInfo
最新推荐文章于 2025-02-04 14:51:11 发布