Is there a platform-agnostic and filesystem-agnostic method to obtain the full path of the directory from where a program is running using C/C++? Not to be confused with the current working directory. (Please don't suggest libraries unless they're standard ones like clib or STL.)
(If there's no platform/filesystem-agnostic method, suggestions that work in Windows and Linux for specific filesystems are welcome too.)
argv[0], the technique is going to be very OS-dependent. – Loadmaster Jan 28 '10 at 0:42#include <windows.h>, Windows automatically puts achar*to the executable path in_pgmptr. You don't need to call extra functions or assume junk if you are working on Windows only. – rsethc May 1 at 1:38