// 파일 크기를 가져온다.
CFile* pFile = NULL;
ULONGLONG dwLength = 0;
TRY
{
pFile = new CFile(strFilename, CFile::modeRead | CFile::shareDenyNone);
dwLength = pFile->GetLength();
}
CATCH(CFileException, pEx)
{
// Simply show an error message to the user.
dwLength = 25000;
}
AND_CATCH(CMemoryException, pEx)
{
dwLength = 25000;
}
END_CATCH
if (pFile)
{
pFile->Close();
delete pFile;
}
CString str;
str.Format("%I64d", dwLength);
'프로그래밍 > VC++' 카테고리의 다른 글
버튼 동적 생성과 이벤트 연결 (0) | 2007.11.22 |
---|---|
CPPUnit 제대로 써보자. (0) | 2007.10.28 |
프로세스 실행시키고 종료될때까지 기다리기. (0) | 2007.09.22 |
다른 Application으로 Drag & Drop. MFC 클래스를 이용해서. (0) | 2007.08.29 |
Ole Drag & Drop (0) | 2007.08.28 |