linux c/c++ 获取文件大小
时间:2019-01-12 12:50:49
收藏:0
阅读:495
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;
}
原文:https://www.cnblogs.com/smallredness/p/10259237.html
评论(0)