得到文件大小
Posted Dsp Tian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了得到文件大小相关的知识,希望对你有一定的参考价值。
unsigned long get_file_size(const char *filename) { struct stat buf; if(stat(filename, &buf)<0) { return 0; } return (unsigned long)buf.st_size; }
以上是关于得到文件大小的主要内容,如果未能解决你的问题,请参考以下文章