static int ErrnoToException( int nErrno );
nErrno
An integer error code as defined in the run-time include file errno.h.
This static function converts a given run-time library error value to a CFileException enumerated error value. See CFileException::m_cause for a list of the possible enumerated values.
Enumerated value that corresponds to a given run-time library error value.
#include <errno.h>
ASSERT( CFileException::ErrnoToException( EACCES ) ==
CFileException::accessDenied );
CFileException::OsErrorToException