vs2010mfc 文件操作
void CfileView::OnFileWrite(){
// TODO: 在此添加命令处理程序代码
CFile file(LPCTSTR("test.txt"),CFile::modeCreate|CFile::modeWrite);
file.Write("hello",strlen("hello"));
file.Close();
}
写了一个打开文件的函数,,,但程序运行后没有该文件,,,不知道为什么

低调的卓越.........