CFile::Close
virtualvoidClose();
throw(CFileException);
Remarks
Closes the file associated with this object and makes the file unavailable for reading or writing. If you have not closed the file before destroying the object, the destructor closes it for you.
If you used new to allocate the CFile object on the heap, then you must delete it after closing the file. Close sets m_hFile to CFile::hFileNull.
Example
See the example for CFile::CFile.
CFile Overview | Class Members | Hierarchy Chart
See Also CFile::Open