[求助]对文件写操作的问题
想要删除文本记录里的某段内容,首先用CFile类的READ和SEEK操作找到了要修改的位置,然后想进行写操作,是否直接可以使用WRITE操作?试了下,提示没有错误,但运行的时候出现问题,说对文件的存取被拒绝,该怎样修改?
CFile DFile;
char *temp;
int i=0;
temp=new char(a+1);
temp[a]=0;
DFile.Open("stdmark.txt",0x04);
DFile.Seek(0,FILE_BEGIN);
DFile.Read(temp,strlen(m_std_id));
UpdateData(true);
while(strcmp(temp,m_std_id)!=0&&i<m_stdnum)
{
MessageBox(temp);
DFile.Seek(12+strlen("\n")+strlen(m_std_name)+2,FILE_CURRENT);
i++;
DFile.Read((char *)&temp,strlen(m_std_id));
}
if(i==m_stdnum)
{MessageBox("学号不存在");
}
else
{
DFile.Seek(-strlen(m_std_id),FILE_CURRENT);
DFile.Write(" ",strlen(m_std_id)+1+12+strlen("\n")+strlen(m_std_name)+2);
UpdateData(true);
m_stdnum--;
UpdateData(false);
DFile.Close();
}
}以上是代码