C# 使用Process 进程调用其他程序
2021-03-02 00:26
标签:div help 配置文件 ihe roc proc box code str C# 使用Process 进程调用其他程序 标签:div help 配置文件 ihe roc proc box code str 原文地址:https://www.cnblogs.com/iowoi/p/13073108.html 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");
}
上一篇:Flink Window API
下一篇:windows命令(持续更新)
文章标题:C# 使用Process 进程调用其他程序
文章链接:http://soscw.com/index.php/essay/58793.html