ocx 和 EXE 当前路径运行路径区别
获取工程运行路径源代码
string GetProgramDir() { char exeFullPath[MAX_PATH]; // Full path string strPath = ""; GetModuleFileName(NULL,exeFullPath,MAX_PATH); strPath=(string)exeFullPath; // Get full path of the file int pos = strPath.find_last_of('\\', strPath.length()); return strPath.substr(0, pos); // Return the directory without the file name }
执行结果:
ocx:会是IE路径安装路径
EXE:exe所在文件夹
获取工程当前路径源代码
string GetCurrentDir(const string &path){ string ls_FileName; LPTSTR lpBuffer; UINT uSize; HANDLE hHeap; uSize=(GetCurrentDirectory(0,NULL))*sizeof(TCHAR); hHeap=GetProcessHeap(); lpBuffer=(LPSTR)HeapAlloc(hHeap,HEAP_ZERO_MEMORY,uSize); GetCurrentDirectory(uSize,lpBuffer); ls_FileName = (string) lpBuffer; ls_FileName.append(path); return ls_FileName;}
执行结果:
ocx:会是用户桌面
EXE:运行该exe工程的文件夹路径
debug:(工程名AAA)
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。