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

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

猜你喜欢

转载自www.cnblogs.com/smallredness/p/10259237.html