本文介绍了如何在MFC中使用CFile类删除行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
请让我知道,如何使用CFile类删除文件中的每一行.
-Abhi
Hi,
Please let me know,how can I remove each lines in the file using CFile class.
-Abhi
推荐答案
CFile f;
f.Open(_T("path of the file"),CFile::modeRead|CFile::modeWrite);
read function is :
f.Read(buffer,count);
write function is:
f.Write(buffer,count);
f.Close();
这篇关于如何在MFC中使用CFile类删除行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!