linux c/c++ 获取文件大小

#include <sys/stat.h>
int FileSize(const char* fname)
{
struct stat statbuf;
if(stat(fname,&statbuf)==0)
return statbuf.st_size;
return -1;
}
05-11 04:50