Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It seems to me that Linux has it easy with /proc/self/exe. But I'd like to know if there is a convenient way to find the current application's directory in C/C++ with cross-platform interfaces. I've seen some projects mucking around with argv[0], but it doesn't seem entirely reliable.

If you ever had to support, say, Mac OS X, which doesn't have /proc/, what would you have done? Use #ifdefs to isolate the platform-specific code (NSBundle, for example)? Or try to deduce the executable's path from argv[0], $PATH and whatnot, risking finding bugs in edge cases?

share|improve this question
Duplicate: stackoverflow.com/questions/933850/… – Greg Hewgill Oct 26 '09 at 21:16
I googled: get my ps -o comm. What brought me here is: "/proc/pid/path/a.out" – basin Mar 28 at 12:05

7 Answers

Some OS-specific interfaces:

The portable (but less reliable) method is to use argv[0]. Although it could be set to anything by the calling program, by convention it is set to either a path name of the executable or a name that was found using $PATH.

Some shells, including bash and ksh, set the environment variable "_" to the full path of the executable before it is executed. In that case you can use getenv("_") to get it. However this is unreliable because not all shells do this, and it could be set to anything or be left over from a parent process which did not change it before executing your program.

share|improve this answer
2  
And also readlink /proc/curproc/file on FreeBSD. – stepancheg Jul 5 '09 at 17:07
1  
+1 Nice concise comprehensive answer! – Martin B Dec 7 '09 at 10:33
1  
And also note that _NSGetExecutablePath() doesn't follow symlinks. – naruse Aug 8 '11 at 5:11
1  
NetBSD: readlink /proc/curproc/exe DragonFly BSD: readlink /proc/curproc/file – naruse Aug 8 '11 at 5:12
2  
Solaris: char exepath[MAXPATHLEN]; sprintf(exepath, "/proc/%d/path/a.out", getpid()); readlink(exepath, exepath, sizeof(exepath));; that's different from getexecname() - which does the equiv of pargs -x <PID> | grep AT_SUN_EXECNAME ... – FrankH. Jun 19 '12 at 14:13
show 2 more comments

You can use argv[0] and analyze the PATH environment variable. Look at : A sample of a program that can find itself

share|improve this answer
2  
This isn't actually reliable (though it will generally work with programs launched by the usual shells), because execv and kin take the path to the executable seperately of argv – dmckee Sep 9 '09 at 13:02

If you ever had to support, say, Mac OS X, which doesn't have /proc/, what would you have done? Use #ifdefs to isolate the platform-specific code (NSBundle, for example)?

Yes, writing platform specific code, and then isolating it with #ifdefs is the way to do. For example, check out how Poco C++ library does something similar for their Environment class.

share|improve this answer

AFAIK, no such way. And there is also an ambuiguity: what would you like to get as the answer if the same executable has multiple hard-links "pointing" to it? (Hard-links don't actually "point", they are the same file, just at another place in the FS hierarchy.) Once execve() successfully executes a new binary, all information about its arguments is lost.

share|improve this answer

Apparently very close from "Programatically retrieving the absolute path of an OS X command-line app".

share|improve this answer
Hmm... That one said that it couldn't be done. I've now added an answer to that question. – mark4o Jun 21 '09 at 23:10

For Linux/Unix try

sprintf(cmd, "which %s", argv[0]);
file = popen(cmd, "r");
fgets(path, sizeof(path), file);
share|improve this answer
This seems like a hilariously bad idea: which wont find the executable in a non-standard directory and seems equally non-portable except now it goes across Unixes. – Nikron Jun 21 '09 at 6:31
does it work on windows ? – Ahmed Said Jun 21 '09 at 6:37
2  
When you start an application, you need to specify either full path, relative to current directory or no path - in this case $PATH will be checked. which supports all three options - it will give you the full path. And it works for both Linux and Mac OS X, as OP requested. So there is nothing bad with this approach and nothing hilarious. – qrdl Jun 21 '09 at 6:41
Nope, it doesn't work on Windows, because which is Linux/Unix command and popen() is POSIX function. – qrdl Jun 21 '09 at 6:42
When this program int main() { char *argv[] = { "/opt/you/bin/bogus", 0 }; execvp("yourprogram", argv); return -1; } runs yourprogram, then inside your program, argv[0] is /opt/you/bin/bogus, which is unrelated to your actual program name. Thus, analyzing argv[0] is unreliable. – Jonathan Leffler Aug 13 '12 at 6:36

The absolute value path of a program is in the PWD of the envp of your main function, also there's a function in C called getenv, so there's that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.