gpt4 book ai didi

c++ - 我可以在使用 std::system 启动进程时指定工作目录吗?

转载 作者:太空宇宙 更新时间:2023-11-04 11:52:33 24 4
gpt4 key购买 nike

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

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

在这种情况下有什么方法可以指定工作目录吗?

最佳答案

我不相信有一种可移植的方式来实现你想要的,至少据我所知,它不是 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 );
}
}

关于c++ - 我可以在使用 std::system 启动进程时指定工作目录吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17533317/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com