ocx 和 EXE 当前路径运行路径区别

获取工程运行路径源代码app

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路径安装路径 ocx 和 EXE 当前路径运行路径区别ide

EXE:exe所在文件夹 ocx 和 EXE 当前路径运行路径区别debug

获取工程当前路径源代码code

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:会是用户桌面 ocx 和 EXE 当前路径运行路径区别blog

EXE:运行该exe工程的文件夹路径 ocx 和 EXE 当前路径运行路径区别string

debug:ocx 和 EXE 当前路径运行路径区别(工程名AAA)it

相关文章
相关标签/搜索