MFC中使用函数实现ini文件的连续读写

实现的思路:

首先通过读取文件中的count值,确定当前信息条数;

第二步:将count进行累加,把信息写到累加后的键值"="的后面;

第三步:写入count累加值,实现连续读写;

第四步:写入需要保存的信息;

第五步:读取当前count值;

第六步:根据当前count值,读取写入的信息;

最后就是通过MessageBox来验证写入的信息。

//读取Ini文件中的Count值

GetPrivateProfileString(L"FileName", L"Count", NULL, wcharBuf, MAX_PATH, L"C:\\Users\\source\\repos\\FileNameInfo.ini");

//读到后累加一,wchar_t转int再转CString,实现连续读写

CountNumb = _ttol(wcharBuf) + 1;

StrCountNum.Format(_T("%d"), CountNumb);

//合成Result+number(键值)

KeyName = StrKey + StrCountNum;

//写入count累加值

::WritePrivateProfileString(L"FileName", L"Count", StrCountNum, L"C:\\Users\\source\\repos\\FileNameInfo.ini");

//写入结果strTempEditPath

::WritePrivateProfileString(L"FileName", KeyName, strTempEditPath, L"C:\\Users\\source\\repos\\FileNameInfo.ini");

//获取当前count值

GetPrivateProfileString(L"FileName", L"Count", NULL, wcharBuf, MAX_PATH, L"C:\\Users\\source\\repos\\FileNameInfo.ini");

//获取当前Result+number(键值)后的数据

GetPrivateProfileString(L"FileName", KeyName, NULL, wcharBuf, MAX_PATH, L"C:\\Users\\source\\repos\\FileNameInfo.ini");

//将读取到的数据存到CString 变量中

strSearch = wcharBuf;

//从右边开始截取

strFileName = strSearch.Right(strSearch.GetLength()-39);

//MessageBox(strFileName);//验证信息

相关推荐
SNAKEpc121389 小时前
在MFC中使用Qt(五):MFC和Qt的共存和交互
c++·qt·mfc
菜鸟自学一哥3 天前
MFC添加免费版大漠3.1233
c++·mfc
SNAKEpc121383 天前
在MFC中使用Qt(二):实现Qt文件的自动编译流程
c++·qt·mfc
多云的夏天3 天前
MFC(1)-odbc-ado-调用mysql,sqlserver
mysql·sqlserver·mfc
SNAKEpc121384 天前
在MFC中使用Qt(三):通过编辑项目文件(.vcxproj)实现Qt的自动化编译流程
c++·qt·mfc
LaoWaiHang4 天前
MFC案例:利用计时器(Timer)动态绘制正弦曲线
mfc
SNAKEpc121385 天前
在MFC中使用Qt(四):使用属性表(Property Sheet)实现自动化Qt编译流程
c++·qt·mfc
成功助力英语中国话5 天前
MFC TRACE 宏的使用说明
mfc·trace 宏
攻城狮7号6 天前
【第30节】MFC编程:ListCtrl控件和TreeCtrl控件
c++·mfc·windows编程