获取本程序的运行目录

char buf[256];
CString st;
GetModuleFileName (NULL,buf,256);
st=buf;
AfxMessageBox(st);
st=st.Left(st.ReverseFind('//'));
//从右边开始取st字符串中”/”以左的内容。也就是去掉程序名字。
AfxMessageBox(st);

你可能感兴趣的:(null)