直接看代码吧;
void SetXXXXParams(const CString strApp, const CString strKey, CString& strValue)
{
CString strFilePath = GetDllPath() + _T("Connect.ini");
::WritePrivateProfileString(strApp, strKey, strValue, strFilePath);
}
CString strPictureAddress = _T("D:\sInfo");
SetFtpAddressParams(_T("FTP_ADDRESS"), _T("FCFHT_PATH"), strPictureAddress);结果出来就是这样子:
本文介绍了一个简单的C++函数实现,用于通过WritePrivateProfileString API更新INI文件中的配置参数。示例展示了如何将指定的应用名称、键名及对应的字符串值写入特定路径下的Connect.ini文件。
2146

被折叠的 条评论
为什么被折叠?



