1

鉴于它的完整路径,我想启动一个可执行文件:

std::system("C:/binary.exe")

在这种情况下有没有办法指定工作目录?

4

1 回答 1

1

我不相信有一种可移植的方式来实现你想要的,至少据我所知,C++ 标准并没有强制要求它。一般来说,如果您需要的功能多于system()提供的功能,您应该寻找其他地方。在 Linux 和 Unix 系统上,这将是fork(2)exec(3)函数。在 Windows 上CreateProcess()

用于实现此目的的 Linux 方式的未经测试的代码将是:

#include <cstdio>
#include <unistd.h>

int
main()
{
    const pid_t pid( fork() );
    if ( !pid ) {
        // child process
        if ( chdir("/tmp") ) {
            perror( "chdir" );
        }
        execl( "/binary", "binary", (char*)0 );
        perror( "execl(\"/binary\")" );
        _exit( 1 );
    }
}
于 2013-07-08T19:36:13.507 回答