首页 > 编程语言 > 详细

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

时间:2019-01-12 12:50:49      阅读:493      评论:0      收藏:0      [点我收藏+]

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++ 获取文件大小

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!