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?

link|improve this question
Duplicate: stackoverflow.com/questions/933850/… – Greg Hewgill Oct 26 '09 at 21:16
feedback

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.

link|improve this answer
And also readlink /proc/curproc/file on FreeBSD. – stepancheg Jul 5 '09 at 17:07
Thanks @stepancheg; added. However it looks like procfs is not mounted by default on FreeBSD so I have linked to another question mentioning sysctl. – mark4o Sep 10 '09 at 16:31
+1 Nice concise comprehensive answer! – Martin B Dec 7 '09 at 10:33
And also note that _NSGetExecutablePath() doesn't follow symlinks. – naruse Aug 8 '11 at 5:11
NetBSD: readlink /proc/curproc/exe DragonFly BSD: readlink /proc/curproc/file – naruse Aug 8 '11 at 5:12
feedback

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

link|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
feedback

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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

link|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
feedback

For Linux/Unix try

sprintf(cmd, "which %s", argv[0]);
file = popen(cmd, "r");
fgets(path, sizeof(path), file);
link|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
1  
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
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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