Chinaunix首页 | 论坛 | 博客
  • 博客访问: 458771
  • 博文数量: 293
  • 博客积分: 4204
  • 博客等级: 上校
  • 技术积分: 3060
  • 用 户 组: 普通用户
  • 注册时间: 2010-03-21 10:27
个人简介

nobody

文章分类

全部博文(293)

文章存档

2014年(27)

2013年(105)

2012年(41)

2011年(109)

2010年(11)

分类:

2011-02-23 13:41:07

方法1:
long  get_file_size(char *filename)
{
/*
i do not think that is a good idea ,as it calls too much syscall
*/
FILE *fp=NULL;
unsigned int  counter=0;

fp=fopen(filename,"r");
if(fp==NULL)
{
//printf("open fail\n");
return 0;
}
fseek(fp,0L,2);
counter=ftell(fp);
rewind(fp);
fclose(fp);
return counter;
}
方法2:

long  get_file_size(char *filename)
{
struct stat info;

if((NULL!=filename)&&(0==stat(filename,&info)))
return  info.st_size;
else
return  0;/**/
}
/*
阅读(807) | 评论(0) | 转发(1) |
给主人留下些什么吧!~~