Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How I can get actual folder path where my program is without my exe file name in C++?

share|improve this question
Dupe of stackoverflow.com/questions/737996/… - there are similar dupes for windows. – anon Jul 19 '09 at 12:51
Heh, seems to be your answer Neil :) – Pukku Jul 19 '09 at 12:58
Yup, and on some systems (especially embedded) the question doesn't even make sense. C++ doesn't assume executables are files, nor does it assume a lot about the existance of (sub)directories. – MSalters Jul 20 '09 at 10:31

1 Answer

up vote 0 down vote accepted

The following function will give you the application path:

::GetModuleFileName(NULL, szAppPath, MAX_PATH);

Now to extract the folder, you need to find the last backslash:

char szApplicationPath[MAX_PATH] = "";
::GetModuleFileName(NULL, szApplicationPath, MAX_PATH);

//Get the folder part
CString strApplicationFolder;
strApplicationFolder = szApplicationPath;
strApplicationFolder = strApplicationFolder.Left(strApplicationFolder.ReverseFind("\\"));
share|improve this answer

Your Answer

 
discard

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