C语言写个输出文件大小的程序

WriteaCprogramthattakesasinglefilenameasaparameterandoutputstostandardoutputthesizeof... Write a C program that takes a single file name as a parameter and
outputs to standard output the size of the file in bytes. You may assume the file
exists and it is just a regular file. Place your answer in the file called 'mysize.c' in the
Q3 directory. (hint - “man 2 stat”) When run from the command line you should see :
$ ./mysize 100bytefile
100
$ ./mysize emptyfile
0
展开
 我来答
EMayej
2014-07-19 · 超过16用户采纳过TA的回答
知道答主
回答量:31
采纳率:0%
帮助的人:38.6万
展开全部
#include <stdio.h>
#include <sys/stat.h>

int main(int ac, char * av[]) {
  struct stat sb;
  stat(av[1], &sb);
  printf("%lld\n", (long long) sb.st_size);
  return 0;
}
百度网友69128bd
2014-07-19 · TA获得超过133个赞
知道小有建树答主
回答量:481
采纳率:100%
帮助的人:271万
展开全部
像楼上的,打开一个文件,fseek函数把文件位置移动到末端,然后ftell获取文件当然位置并返回就是文件大小了,
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
songhai911
2014-07-18 · 超过61用户采纳过TA的回答
知道小有建树答主
回答量:116
采纳率:0%
帮助的人:69.9万
展开全部
//mysize.c

#include <stdio.h>
int main(int argc, char* argv[])
{
long int iFileLen;
FILE *pFile;
if(argc==1){
printf("usage: mysize <filename>\n");
return 0;}

pFile = fopen( argv[1], "rb" );
if ( pFile == NULL ) {
printf("file not found\n");
return 1;}

fseek( pFile, 0, SEEK_END );
iFileLen = ftell( pFile );

fclose( pFile );
printf("%ld\n",iFileLen);
return 0;
}
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式