/*
writer: gs
function:count the size of file
date: 2013.3.29
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
int file_size(char *filename)
{
int size;
int fd = open(filename,O_RDONLY);
if(fd < 0)
{
printf("The file not exist\n");
return(-1);
}
else
{
size = lseek(fd, 0 ,SEEK_END);
close(fd);
return size;
}
}
int main(int argc, char * argv[])
{
int i, size;
if(argc < 2)
{
printf("Please input filename!\n");
return 1;
}
for(i=1; i<argc; i++)
{
if((size = file_size(argv[i]))>0)
printf("The %s size is %d byte!\n",argv[i],size);
}
return 0;
}
writer: gs
function:count the size of file
date: 2013.3.29
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
int file_size(char *filename)
{
int size;
int fd = open(filename,O_RDONLY);
if(fd < 0)
{
printf("The file not exist\n");
return(-1);
}
else
{
size = lseek(fd, 0 ,SEEK_END);
close(fd);
return size;
}
}
int main(int argc, char * argv[])
{
int i, size;
if(argc < 2)
{
printf("Please input filename!\n");
return 1;
}
for(i=1; i<argc; i++)
{
if((size = file_size(argv[i]))>0)
printf("The %s size is %d byte!\n",argv[i],size);
}
return 0;
}
本文介绍了一个简单的C语言程序,用于获取指定文件的大小。通过使用标准库函数如open、lseek和close,程序能够打开文件并定位到文件末尾以读取文件大小,最后关闭文件。
165

被折叠的 条评论
为什么被折叠?



