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

I know this question has been asked before but I still haven't seen a satisfactory answer, or a definitive "no, this cannot be done", so I'll ask again!

All I want to do is get the path to the currently running executable, either as an absolute path or relative to where the executable is invoked from, in a platform-independent fashion. I though boost::filesystem::initial_path was the answer to my troubles but that seems to only handle the 'platform-independent' part of the question - it still returns the path from which the application was invoked.

For a bit of background, this is a game using Ogre, which I'm trying to profile using Very Sleepy, which runs the target executable from its own directory, so of course on load the game finds no configuration files etc. and promptly crashes. I want to be able to pass it an absolute path to the configuration files, which I know will always live alongside the executable. The same goes for debugging in Visual Studio - I'd like to be able to run $(TargetPath) without having to set the working directory.

share|improve this question
1  
stackoverflow.com/questions/1023306/… and others – dmckee Oct 7 '09 at 0:15
4  
Note that it is impossible to prove the absence of an answer, therefore you can't get a definitive NO. I'll be happy to give you an authoritative NO :) – MSalters Oct 7 '09 at 11:52
possible duplicate of how to find the location of the executable in C – ergosys Sep 10 '11 at 18:56
"on load the game finds no configuration files etc." so the game searches for configuration files on the current directory? That's a bad idea, and potentially a security vulnerability. Configuration files should be stored in a standard location. – curiousguy Nov 27 '11 at 5:05
Sure, but there are plenty of programs out there that come in a "portable" version where all configuration is stored alongside the executable. I imagine at least someone has come up with a way of doing this that's not a security risk :) – Ben Hymers Dec 8 '11 at 22:07
show 3 more comments

6 Answers

up vote 24 down vote accepted

There is no cross platform way that I know.

For Linux: readlink /proc/self/exe

Windows: GetModuleFileName

share|improve this answer
3  
Platform independence is simply a matter of hiding the platform dependency. In this case using the predefined OS macros detailed at predef.sourceforge.net/preos.html to select the method is straightforward. – Clifford Oct 7 '09 at 15:02
1  
So is this what everyone does whenever they want to find the executable's path in C++? I was hoping something as simple-sounding as this would already be implemented in a library like boost. – Ben Hymers Oct 12 '09 at 19:53
I suppose I did ask for either a method or 'no', and this is both, so I'll accept it :) – Ben Hymers Jul 25 '10 at 14:04
@BenHymers "So is this what everyone does whenever they want to find the executable's path in C++?" why would anyone need to do that? – curiousguy Nov 27 '11 at 5:02
1  
@curiousguy I'm not sure I understand you; I'm pretty sure that's the whole point of this question :) – Ben Hymers Dec 8 '11 at 22:08
show 1 more comment

This way uses boost + argv. You mentioned this may not be cross platform because it may or may not include the executable name. Well the following code should work around that.

#include "boost/filesystem/operations.hpp"

#include "boost/filesystem/path.hpp"

#include <iostream>

namespace fs = boost::filesystem;


int main(int argc,char** argv)
{
    fs::path full_path( fs::initial_path<fs::path>() );

    full_path = fs::system_complete( fs::path( argv[0] ) );

    std::cout << full_path << std::endl;

    //Without file name
    std::cout << full_path.stem() << std::endl;
    //std::cout << fs::basename(full_path) << std::endl;

    return 0;
}

The following code gets the current working directory which may do what you need

#include "boost/filesystem/operations.hpp"
#include "boost/filesystem/path.hpp"

#include <iostream>

namespace fs = boost::filesystem;


int main(int argc,char** argv)
{
    //current working directory
    fs::path full_path( fs::current_path<fs::path>() );

    std::cout << full_path << std::endl;

    std::cout << full_path.stem() << std::endl;
    //std::cout << fs::basepath(full_path) << std::endl;

    return 0;
}

Note Just realized that basename() was deprecated so had to switch to .stem()

share|improve this answer
stem seems to give me just the executable minus the path and extension on Windows, but that's a minor point. What I'd like to know is how this works around argv[0] being possibly incorrect? It works for me testing on Windows, but then argv[0] is actually being passed in as the absolute path of the executable, which makes system_complete's job pretty easy :) – Ben Hymers Oct 12 '09 at 19:47
No -- he doesn't need the working directory. and NO argv doesn't help. What do you do when argv contains only the executable name? What to do, when the program was invoked via a symlink? – Ichthyo Feb 1 '11 at 1:47

For Windows you can use GetModuleFilename().
For Linux see BinReloc.

share|improve this answer

I'm not sure about Linux, yet try this for Windows:

#include <windows.h>
#include <iostream>

using namespace std ;

int main()
{
    char ownPth[MAX_PATH]; 

    // Will contain exe path
    HMODULE hModule = GetModuleHandle(NULL);
    if (hModule != NULL)
    {
     // When passing NULL to GetModuleHandle, it returns handle of exe itself
     GetModuleFileName(hModule,ownPth, (sizeof(ownPth))); 

     // Use above module handle to get the path using GetModuleFileName()
     cout << ownPth << endl ;
     system("PAUSE");
     return 0;
    }
    else
    {
     cout << "Module handle is NULL" << endl ;
     system("PAUSE");
     return 0;
    }
}
share|improve this answer
Note that one must use WCHAR ownPth.., wrapped around a #ifdef UNICODE in the event that one compiles with Unicode support. If not, use the code provided. – Dr1Ku Feb 21 at 13:12

For windows:

GetModuleFileName - returns the exe path + exe filename

To remove filename
PathRemoveFileSpec

share|improve this answer

This works for me:

#include <iostream>

using namespace std ;

int main( int argc, char** argv)
{
    cout << argv[0] << endl ; ;
    return 0;
}
share|improve this answer
8  
I've seen on other SO questions that this doesn't always work, and that argv[0] can contain the absolute path to the executable, just the file name of the executable, or any other rubbish. – Ben Hymers Oct 6 '09 at 22:08
Quite possibly so. – Clifford Oct 7 '09 at 14:58
3  
One should never trust argv[0] if they're attempting to open 'support files' or the like. Argv is subject to change, and any caller that is evil can change the value of this. Avoid unless you're using it for logging, etc., NOT for constructing paths used to open files. – Qix Oct 28 '11 at 10:46
1  
@Di-0xide: Yes, I conceded that fact in response to Ben's comment - two years ago! It would depend entirely on its use whether the "quick-and-dirty" solution were acceptable or not. I let the answer stand purely for completeness, not because it was best practice. The voting already reflected that before you decremented it! – Clifford Oct 28 '11 at 17:31

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.