void WriteProfileString(
LPCTSTR lpszSection,
LPCTSTR lpszEntry,
LPCTSTR lpszValue
);
- lpszSection 参数是配置文件中的节(section)名称。
- lpszEntry 参数是在指定节中标识字符串值的条目(entry)名称。
- lpszValue 参数是要写入的字符串值。
例如,如果你想将字符串写入配置文件中,可以使用以下代码:
WriteProfileString(_T("MySection"), _T("MyStringValue"), _T("Hello, MFC!"));
这会将名为 "MyStringValue" 的字符串值 "Hello, MFC!" 写入 "MySection" 节。
请注意,这个方法是基于注册表的配置文件系统,因此数据将保存在注册表中。对于其他类型的数据或需要更灵活的配置管理的情况,可能需要考虑使用其他 MFC 提供的配置文件操作方法,或者使用不同的配置管理方案。
转载请注明出处:http://www.pingtaimeng.com/article/detail/23142/MFC/CWinApp