gpt4 book ai didi

c++ - 如何在 Linux 中运行 C++ 中的可执行文件?

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

我正在尝试在 C++ 代码中运行可执行文件。它编译并运行,但它显示一条消息“权限被拒绝”。同样的代码适用于 Windows,我只是使用适当的文件路径。

这是我使用的代码

FILE *fp = popen("/home/Int_Outputs/bin/Debug","r");
if (fp == NULL){
std::cout <<"Popen is null" << std::endl;
}
char buff[50];
fgets(buff,sizeof(buff),fp);
std::cout << buff;
}
return 0;
}

最佳答案

该文件的 POSIX 权限是什么?要找出答案,请打开终端 shell 并执行以下操作:

$ ls -l /home/Int_Outputs/bin/Debug

您必须确保您的应用程序运行的 UID/GID 具有读取文件“/home/Int_Outputs/bin/Debug”的权限

关于c++ - 如何在 Linux 中运行 C++ 中的可执行文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32062375/

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