C#调用其它程序

 //执行bat文件
                System.Diagnostics.Process myProc = new System.Diagnostics.Process();
                myProc.StartInfo.FileName = batPath;
                myProc.Start();
//调用cmd.exe
                System.Diagnostics.Process.Start("cmd.exe", ff);
posted @ 2007-07-16 15:02  fishert  阅读(674)  评论(0)    收藏  举报