Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
#include <linux/limits.h>
#include <libgen.h>
int main()
{
char exe[PATH_MAX], real_exe[PATH_MAX];
ssize_t r;
char *dir;
if ((r = readlink("/proc/self/exe", exe, PATH_MAX)) < 0)
exit(1);
if (r == PATH_MAX)
r -= 1;
exe[r] = 0;
if (realpath(exe, real_exe) == NULL)
exit(1);
dir = dirname(real_exe);
puts(dir);
}
dir = AppDomain.CurrentDomain.BaseDirectory;
const dir = __dirname;
dir = arg[1]
$dir = realpath(dirname(__FILE__));
dir := extractfilepath(paramstr(0));
dir = __dir__
let dir = std::env::current_exe()?
.canonicalize()
.expect("the current exe should exist")
.parent()
.expect("the current exe should be a file")
.to_string_lossy()
.to_owned();