CFile::Remove
时间: 2024-10-10 09:17:02 浏览: 29
CFile的用法.doc
在MFC(Microsoft Foundation Classes)中,CFile是一个基础类,它提供了一种跨平台的方式来处理文件的读写。如果你想要在Windows平台上使用MFC的话,CFile::Remove方法用于删除一个文件。其基本用法如下:
```cpp
CFile file("example.txt", CFile::modeNoTruncate | CFile::typeText); // 创建一个文本文件对象
if (!file.Open(CFile::modeDelete)) { // 尝试打开并删除文件
AfxMessageBox("Failed to remove the file!");
} else {
if (!file.Close()) {
AfxMessageBox("Could not close the file after deletion.");
} else {
MessageBox("File has been successfully removed.", "Removal Result", MB_OK);
}
}
```
这里,我们试图以只读模式打开文件(实际上是删除模式),如果成功则关闭文件,表示删除成功。
阅读全文