GetFileSizeEx 사용 - 큰일.개발.기억력상실~ㅠ
2015. 6. 4. 14:19ㆍIT-개발/winapi 및 MFC
반응형
// get file handle...
__int64 64FileSize = 0;
LARGE_INTEGER largeInt;
memset(&largeInt, 0x0, sizeof(largeInt));
if (GetFileSizeEx(hFile, &largeInt) == false)
{
// Todo : error handling...
}
else
{
if (largeInt.HighPart == 0 &&
largeInt.LowPart == 0)
{
// Todo : file size is zero
}
else
{
64FileSize = largeInt.QuadPart;
/* 혹은 아래와 같이...
64FileSize = largeInt.HighPart;
64FileSize <<= 32;
64FileSize |= largeInt.LowPart;
*/
}
}
// close file handle...
얍~ ㅠㅠ~ 이제는 기억할테다~
'IT-개발 > winapi 및 MFC' 카테고리의 다른 글
[UI - Tree] item 선택된 항목 계속 표시 방법 (0) | 2015.06.08 |
---|---|
강제 casting이 이래서 필요하군요~~ㅠ (0) | 2015.06.04 |
인증서 입히기~ 진짜 쓰는거만~ (0) | 2015.06.01 |
파일이름이 짧게 나올때~ㅠㅠ (0) | 2015.05.14 |
[MFC] 유니코드 멀티바이트 UTF-8 문자열 인코딩 변환 모음(퍼옴) (2) | 2015.04.23 |