char sDir[100];
GetModuleFileName(NULL, sDir, 100); // 获得配置文件的路径
CString strFile;
strFile.Format("%s", sDir);
int iFinder = strFile.ReverseFind('//');
if (iFinder > 0)
{
strFile = strFile.Left(iFinder+1);
strFile += "text.ini";
}
// 写数据
WritePrivateProfileString(section name, key name, string to add, strFile);