Is there a way in C/C++ to find the location (full path) of the current executed program (the problem with argv[0] is that it does not give the full path)?
|
|
To summarize:
|
|||||||||||||||||
|
|
For Linux you can find the |
|||
|
|
|
I would 1) Use the basename() function: http://linux.die.net/man/3/basename That way you'll get the directory in a neat, full form, instead of ./ or ../bin/. Maybe you'll want to save and restore the current directory, if that is important for your program. |
|||
|
|
|
Not an answer actually, but just a note to keep in mind. As we could see, the problem of finding the location of running executable is quite tricky and platform-specific in Linux and Unix. One should think twice before doing that. If you need your executable location for discovering some configuration or resource files, maybe you should follow the Unix way of placing files in the system: put configs to |
|||
|
|
|
Remember that in unix systems the binary may have been removed since it was started. It's perfectly legal and safe on unix. Last I checked Windows will not allow you to remove a running binary. /proc/self/exe will still be readable, but it will not be a working symlink really. It will be... odd. |
|||
|
|
|
Please note that the following comments are unix-only. The pedantic answer to this question is that there is no general way to answer this question correctly in all cases. As you've discovered, argv[0] can be set to anything at all by the parent process, and so need have no relation whatsoever to the actual name of the program or its location in the file system. However, the following heuristic often works:
Note that all of these can be circumvented by the process which invoked the program in question. Finally, you can use linux-specific techniques, such as mentioned by emg-2. There are probably equivalent techniques on other operating systems. Even supposing that the steps above give you a valid path name, you still might not have the path name you actually want (since I suspect that what you actually want to do is find a configuration file somewhere). The presence of hard links means that you can have the following situation:
Now, the approach above (including, I suspect, /proc/$pid/exe) will give In spite of the fact that this approach is in principle unreliable, it works well enough in practice for most purposes. |
||||
|
|
|
I don't think there is a portable way to do this. Does argv[0] have the full path if you invoke the program with a full static path? If so, you could force the user to execute the binary as such, like sshd does. |
|||
|
|
|
Use GetModuleFileName() function if you are using Windows. |
||||
|
|
|
If under any POSIX system, then you could check a simlink located under /proc/PID/exe. Few examples:
|
|||||||||||||
|