file 썸네일형 리스트형 How to get file size ? Like this!! This is a example to get size of specific file. #include int main(){ struct stat buffer; stat("FILE LOCATION",&buffer); printf("file size : %d\n", buffer.st_size); } Is it worthy? kk I forgot where it is from but I know only found this by google. :) 더보기 이전 1 다음