如何得到相对路径(MFC)

设计思想是先得到当前程序的完全路径,再去掉本程序的名称就得到了当前的相对路径!!
希望有更多想法的大家一起分享,一起学习
wchar_t* allPathName = new wchar_t[200];                 //声明程序的完整路径名

         GetModuleFileName(NULL,allPathName,200);               //得到程序的完整路径名

         wchar_t *exeName;                                                                                           

         exeName = wcsrchr(allPathName, L'\\');      //在最后一个“\”处断开,得到最后的程序名称

         if (exeName != NULL)                                                  //把程序名置空,即去掉

         {

                   *exeName = NULL;

         }

         wcscat(allPathName,L"\\");      //添加一个“\\”也可以是\\..\\自己需要的添加的文件路径       

         wchar_t *Path;

         Path = new wchar_t[200] ;

         int nNameLen = wcslen(allPathName);

         wmemcpy(Path, allPathName, nNameLen + 1);

         delete allPathName;

 

        // PS:Path是最好需要的路径。


相关资料:http://wenhaidongke.blog.163.com/blog/static/12807009020098285273992/

你可能感兴趣的:(相对路径,cc++)