首页 > 技术文章 > linux c/c++ 获取文件大小

smallredness 2019-01-12 12:02 原文

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;
}

推荐阅读