摘要: string exe_Path = "C:\\";//程序路径 System.Diagnostics.ProcessStartInfo info = new System.Diagnostics.ProcessStartInfo(); info.FileName = "xxx.exe"; info.WorkingDirectory = exe_Path; System.Diagnostics.Process proc; ... 阅读全文
posted @ 2013-11-27 14:07 EleMMent 阅读(907) 评论(0) 推荐(0)