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 cros
You can use argv[0] and analyze the PATH environment variable. Look at : A sample of a program that can find itself