Finding current executable’s path without /proc/self/exe

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?

14 Answers
14

Leave a Comment