https://stackoverflow.com/questions/5840148/how-can-i-get-a-files-size-in-c
| 495 | |
| 496 | // https://stackoverflow.com/questions/5840148/how-can-i-get-a-files-size-in-c |
| 497 | long Helper::getFileSize(std::string filename) { |
| 498 | struct stat stat_buf; |
| 499 | int rc = stat(filename.c_str(), &stat_buf); |
| 500 | return rc == 0 ? stat_buf.st_size : -1; |
| 501 | } |
| 502 | |
| 503 | |
| 504 | /* |