[Sample] 파일크기 구하기...
2016. 6. 16. 17:41ㆍIT-개발/winapi 및 MFC
반응형
자주쓰는 Sample Code 들은 걍 따로 모아 놓아야 겠네~
펌 : http://egloos.zum.com/sweeper/v/2038245
/ 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' 카테고리의 다른 글
Window Version 구하기 (0) | 2017.02.16 |
---|---|
COM DLL만으로 tlb파일 생성및 COM사용하기 (펌) (0) | 2016.08.24 |
CImage LoadFromResource 의 PNG 문제 (펌) (1) | 2016.05.19 |
MFC에서 제공하는 api로 Thread 생성하기... (0) | 2016.04.05 |
Document - View 구조 - 액세스가 거부되었습니다 (0) | 2016.04.05 |