ifstream 열기가 실패 할 때 오류 메시지를 얻는 방법 ifstream f; f.open(fileName); if ( f.fail() ) { // I need error message here, like "File not found" etc. - // the reason of the failure } 오류 메시지를 문자열로 얻는 방법? 실패한 모든 시스템 호출은 errno값을 업데이트합니다 . 따라서 ifstream다음과 같은 것을 사용하여 열기가 실패 할 때 발생하는 일에 대한 자세한 정보를 얻을 수 있습니다 . cerr