파일사이즈구하기 예제 (c언어 linux)
파일의 크기를 구하기 위해서 stat 함수를 이용해서 구현이 가능 --- #include #include #include #include #include "sys/stat.h" static size_t get_file_size (const char * file_name) { struct stat sb; if (stat (file_name, & sb) != 0) { fprintf (stderr, "'stat' failed for '%s': %s.\n", file_name, strerror (errno)); exit (EXIT_FAILURE); } return sb.st_size; } int main (int argc, char ** argv) { int i; const char * file_name; si..
IT/C
2013. 6. 18. 15:16