2014-06-10 6 views

답변

0

당신이 방금 사용해야 체크하여 파일 청크를 읽을 수 있지만이 데이터와 함께 할 건데 분명하지 않다 fread :

FILE *file = fopen("yourfile.dat", "rb"); 
size_t amount; 
unsigned char buffer[PAGE_SIZE]; 

while ((amount = fread(buffer, 1, PAGE_SIZE, file)) > 0) 
{ 
    .. 
}