码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2019-01-12 13:12:08      阅读:597      评论:0      收藏:0      [点我收藏+]

标签:linux c   files   获取文件   file   ons   inux   ==   linux   name   

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

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

标签:linux c   files   获取文件   file   ons   inux   ==   linux   name   

原文地址:https://www.cnblogs.com/smallredness/p/10259237.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!