Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

To get current directory I found :

  if (!getcwd(cCurrentPath, sizeof(cCurrentPath) / sizeof(char))) {
    lililog.log(LILILog::error,"Error getting current directory path");
  }

But I need to get directory of running application. How to make it?

share|improve this question
perhaps add a './' ? – ApprenticeHacker Apr 11 '12 at 10:08
1  
possible duplicate of C++ Get Application Directory *NIX – David Heffernan Apr 11 '12 at 10:10
possible duplicate of How to implement readlink to find the path – trojanfoe Apr 11 '12 at 10:19
but I want directory without executing app name – Heather Apr 11 '12 at 10:27

1 Answer

up vote 3 down vote accepted

Very nonportable solution: read the symlink /proc/self/exe.

share|improve this answer
readlink("/proc/self/exe", buf, bufsize); ? – Heather Apr 11 '12 at 10:14
but I need this path without application name – Heather Apr 11 '12 at 10:20
@Alessa then take the dirname() of the readlink("/proc/self/exe", buf, bufsize); – nos Apr 11 '12 at 10:34
what is dirname() ? – Heather Apr 11 '12 at 10:38
found in <libgen.h> – Heather Apr 11 '12 at 10:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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