明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 1668|回复: 3

[求助]如何获得程序本身所在的目录

[复制链接]
发表于 2004-4-6 11:18:00 | 显示全部楼层 |阅读模式
用C++函数如何获得程序本身所在的目录,还有当前目录
发表于 2004-4-22 09:20:00 | 显示全部楼层
//定義一個全局變量 CString g_strProgramPath=""; //得到當前目錄的全局函數 void g_fGet_Program_Path()
{
char szTmp[255];
GetCurrentDirectory(255,szTmp); g_strProgramPath.Format("%s\\",szTmp);
} void InitApplication()
{
。。。
g_fGet_Program_Path(); // 在程序初始化的時候調用就可以﹐記住不要在其它地方調用 。。。
}
发表于 2004-4-22 11:04:00 | 显示全部楼层
这样做保险 char path[256];
GetModuleFileName(hInstance,path ,256);
CString path1(path);
int len=path1.GetLength();
for(int i=len-1;i>=0;i--)
{
if(path1.GetAt(i)=='\\')
return path1.Left(i);
}
发表于 2004-7-16 17:49:00 | 显示全部楼层
谢谢!


这个对在下也有用!^_^
您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-26 06:52 , Processed in 0.147232 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表