0

我使用 NetBeans 编程 C++ ,我想获取可执行文件的当前绝对路径

(~/NetBeansWorkSpace/project_1/dist/Debug/GNU-Linux-x86/executableFileName)

所以我用

1、 system("pwd")

2、getcwd(buffer,bufferSize)

然后单击运行按钮,但它们都得到了错误的路径:~/NetBeansWorkSpace/project_1

这是惊喜,我运行 bash

cd ~/NetBeansWorkSpace/project_1/dist/Debug/GNU-Linux-x86/executableFileName

./executableFileName

我得到了正确的路径。

这是为什么???

4

4 回答 4

1

正如其他人所说,NetBeans 在运行您的应用程序之前设置工作目录。如果您想获取可执行文件的工作目录,我相信以下应该可以工作。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc, char const* *argv) {
    char *resolved = realpath(argv[0], NULL);
    if (resolved != NULL) {
        char *fname = strrchr(resolved, '/');
        if (fname != NULL) {
            fname[1] = '\0';
        }
        printf("absolute path of %s is %s\n", argv[0], resolved);
        free(resolved);
    } else {
        perror("realpath");
    }
    return EXIT_SUCCESS;
}
于 2012-10-29T16:34:18.630 回答
1

没有任何问题 - NetBeans 正在运行您的程序,当前工作目录设置为项目目录 ( ~/NetBeansWorkSpace/project_1)。

您的程序不应依赖于与您的程序所在目录相同的当前目录。如果您想查看获取程序绝对路径的几种不同方法,请参阅此线程。

于 2012-10-29T16:13:26.467 回答
0

Linux:
执行系统命令的函数

int syscommand(string aCommand, string & result) {
    FILE * f;
    if ( !(f = popen( aCommand.c_str(), "r" )) ) {
            cout << "Can not open file" << endl;
            return NEGATIVE_ANSWER;
        }
        const int BUFSIZE = 4096;
        char buf[ BUFSIZE ];
        if (fgets(buf,BUFSIZE,f)!=NULL) {
            result = buf;
        }
        pclose( f );
        return POSITIVE_ANSWER;
    }

然后我们得到应用名称

string getBundleName () {
    pid_t procpid = getpid();
    stringstream toCom;
    toCom << "cat /proc/" << procpid << "/comm";
    string fRes="";
    syscommand(toCom.str(),fRes);
    size_t last_pos = fRes.find_last_not_of(" \n\r\t") + 1;
    if (last_pos != string::npos) {
        fRes.erase(last_pos);
    }
    return fRes;
}

然后我们提取应用路径

    string getBundlePath () {
    pid_t procpid = getpid();
    string appName = getBundleName();
    stringstream command;
    command <<  "readlink /proc/" << procpid << "/exe | sed \"s/\\(\\/" << appName << "\\)$//\"";
    string fRes;
    syscommand(command.str(),fRes);
    return fRes;
    }

之后不要忘记修剪线

于 2014-03-24T11:12:13.850 回答
0

NetBeans通过为通向它~/NetBeansWorkSpace/project_1/的路径添加前缀来启动您的应用程序。dist/Debug/GNU-Linux-x86/

打开 shell,执行 cd ~/NetBeansWorkSpace/project_1/,然后执行dist/Debug/GNU-Linux-x86/executableFileName,您将获得与从 NetBeans 运行应用程序相同的结果。

于 2012-10-29T16:12:23.180 回答