Process在System.Diagnostics中,所以別忘了:
using System.Diagnostics;
1) 用Process的靜態方法Start
//啟動記事本
Process.Start("notepad.exe");
//啟動記事本,並打開temp.txt文件
Process.Start("notepad.exe",@"d:\temp.txt");
此方法最簡單,但功能有限
2) 用帶有ProcessStartInfo參數的 Start方法
ProcessStartInfo startInfo = new ProcessStartInfo("notepad.exe");
startInfo.Arguments=@" d:\temp.txt ";
//啟動時最小化
startInfo.WindowStyle = ProcessWindowStyle.Minimized;
startInfo.Verb="open";
Process.Start(startInfo);
3)實例化Process類
Process process=new Process();
process.StartInfo.FileName="notepad.exe";
process.StartInfo.Verb="open";
process.StartInfo.WindowStyle = ProcessWindowStyle.Minimized;
process.StartInfo.Arguments=@" d:\temp.txt";
process.Start();
第2種方法和第3種方法差不多,他們的可選的功能就比較多了。