获取文件中内容的行数

在#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
 /*
   * stat函数是 获取文件的 inode的信息
   * struct stat
   * {
   * 	dev_t    st_dev;     //文件设备编号
   * 	ino_t    st_ino;     //inode number
   * 	mode_t   st_mode;    //文件类型与获取权限
   *	nlink_t  st_nlink;   //number of hard links
   * 	uid_t    st_uid;     //user ID of owner
   * 	gid_t    st_gid;     //group ID of owner
   *	dev_t    st_rdev;    //device ID (if special file) 
   *	off_t    st_size;    //文件字节数
   * 	blksize_t st_blksize;//blocksize for filesystem I/O
   * 	blkcnt_t st_blocks;  //number of 512B blocks allocated
   * 	time_t   st_atime;   //time of last access
   * 	time_t   st_mtime;   //time of last modeification
   * 	time_t   st_ctime;   //time of last status change
   * }*/
 
 //读取文件的行数
 long GetNum(char *filename/*文件路径*/)
 {
	struct stat f_stat;

 	if(stat(filename,&f_stat) == -1)
	{
      		return -1;
 	}
	return f_stat.st_size;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值