CFile is the base class for Foundation class files. It directly provides unbuffered, binary disk input/output services, and it indirectly supports text files and memory files through its derived classes. CFile works in conjunction with the CArchive class to support archiving of Foundation objects.
The hierarchical relationship between this class and its derived classes allows your program to operate on all file objects through the polymorphic CFile interface. A memory file, for example, behaves like a disk file.
Use CFile and its derived classes for general-purpose disk I/O. Use ofstream or other I/O stream classes for formatted text sent to a disk file.
Normally, a disk file is opened automatically on CFile construction and closed on destruction. Static member functions permit you to interrogate file status without opening the file.
#include <afx.h>
CStdioFile, CMemFile