我用C ++编写了一个程序,我称之为
system("C:\xampp\xampp-control.exe");来运行xampp控制面板。当我在编译后运行程序时,它运行顺利,除了我编写的程序仍在运行。一旦XAMPP控制面板启动,我想终止该程序。有什么可能做的?非常感谢任何帮助。
答案 0 :(得分:1)
您可以使用exec
调用的应用程序替换您的应用程序。
// Note: this waits for the exectued program to finish
// before the call to `system()` returns.
system("C:\xampp\xampp-control.exe");
// You can replace the current processes with the one you
// are starting like this.
execl("C:\xampp\xampp-control.exe", "xampp-control.exe");
// If this returns the applicaion failed to start.
std::cerr << "Failed to start application\n";
exit(1);