码迷,mamicode.com
首页 > Windows程序 > 详细

C# 使用Process 进程调用其他程序

时间:2020-06-09 16:25:49      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:div   help   配置文件   ihe   roc   proc   box   code   str   

            IniHelper ini = new IniHelper(); //读取配置文件
            string path = ini.ContentValue("BLDZ", "YYHLDZ"); //调用的程序路径 如C:\bl\app.exe
            string path1 = ini.ContentValue("SMARTINI", "SETTING"); //其他程序的配置文件 如C:\bl\app.ini
            string workpath = ini.ContentValue("WORKPATH", "PATH"); //工作目录 如C:\bl
            ini.WriteIni("EditTest", "ZYH", zhuyh, path1);//写入到其他程序的目录下的配置文件中
            Process pro = new  Process();//打开程序B
            pro.StartInfo.WorkingDirectory = workpath;///需要更改新线程的工作目录 不更改目录的话会出现一些意外的错误
            pro.StartInfo.FileName = path; //启动的程序路径
            pro.Start();
            pro.WaitForExit();
            int Result = pro.ExitCode;//程序B退出回传值
            if (Result == 1)//接收到程序B退出代码"1"
            {
                MessageBox.Show( "退出程序B");
            }

 

C# 使用Process 进程调用其他程序

标签:div   help   配置文件   ihe   roc   proc   box   code   str   

原文地址:https://www.cnblogs.com/iowoi/p/13073108.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!