VS2012
打开文件可以使用CFile类中的Open函数
本实例的实现只要使用CFile类中的Open函数。
基本格式如下:
virtual BOOL Open(LPCTSTR lpszFileName, UINT nOpenFlags, CFileException* pError = NULL);
1.lpszFileName:文件名
2.nOpenFlags:打开方式
3.pError:获取文件打开失败时的状态
https://docs.microsoft.com/zh-cn/cpp/mfc/reference/cfile-class?view=msvc-160#open
(1)新建一个基于对话框的应用程序。
(2)向窗体中添加一个按钮控件,执行打开文件的操作。
(3)主要代码如下:
void CDemoDlg::OnBnClickedButton1() { // TODO: 在此添加控件通知处理程序代码 CFile file; if (file.Open("D:\\1\\1.txt", CFile::modeRead)) MessageBox("打开成功"); else MessageBox("打开失败"); }
使用C库函数打开文件
使用C语言的fopen函数打开文件。第一个参数是要打开的文件名,第二个参数是打开方式
FILE *fp; fp = fopen("D:\\1\\1.txt", "r");
Caesar卢尚宇
2021年1月30日
原文:https://www.cnblogs.com/nxopen2018/p/14350968.html