Windows环境下的C++获取当前程序的exe文件路径

获取.exe文件的路径

多字节集环境下

1.  #include "stdafx.h"  

2.  #include      

3.  #include       

4.  #include    

5.  using namespace std;       

6.    

7.  string GetProgramDir()     

8.  {      

9.      char exeFullPath[MAX_PATH]; // Full path   

10.     string strPath = "";   

11.   

12.     GetModuleFileName(NULL,exeFullPath,MAX_PATH);   

13.     strPath=(string)exeFullPath;    // Get full path of the file   

14.   

15.     int pos = strPath.find_last_of('\\', strPath.length());   

16.     return strPath.substr(0, pos);  // Return the directory without the file name   

17. }      

18.   

19. int _tmain(int argc, _TCHAR* argv[])  

20. {   

21.     string strProgramDir = GetProgramDir();  

22.     cout<

23.   

24.     return 0;  

25.

 Unicode字符集环境下

1.  #include "stdafx.h"  

2.  #include      

3.  #include       

4.  #include    

5.  using namespace std;       

6.    

7.  string GetProgramDir()     

8.  {      

9.      wchar_t exeFullPath[MAX_PATH]; // Full path   

10.     string strPath = "";   

11.   

12.     GetModuleFileName(NULL,exeFullPath,MAX_PATH);  

13.     char CharString[MAX_PATH];  

14.     size_t convertedChars = 0;  

15.     wcstombs_s(&convertedChars, CharString, MAX_PATH, exeFullPath , _TRUNCATE);  

16.   

17.     strPath=(string)CharString;    // Get full path of the file   

18.   

19.     int pos = strPath.find_last_of('\\', strPath.length());   

20.     return strPath.substr(0, pos);  // Return the directory without the file name   

21. }      

22.   

23. int _tmain(int argc, _TCHAR* argv[])  

24. {   

25.     string strProgramDir = GetProgramDir();  

26.     cout<

27.   

28.     return 0;  

29. }  

 

 

你可能感兴趣的:(C++)