之前获取文件大小总是用死办法,open一个文件,然后lseek,read这样去获取文件的大小,这样的效率实在是低,还有可能粗心大意还会出错。
一次偶然在Android的源代码中看到获取文件大小的函数,在以下范例中。用fstat这个函数可以避免这些问题。
参考百度:http://baike.baidu.com/link?url=wh6msZkLUlTCx8P6YzujB3YoHaLLVaO68sQIIPR6ICj1yXYJxHfTDvxFwzjJ4YlpZZ8IDsKhKyf9EaCHo4ARHa
函数原型:int fstat(int fildes, struct stat *buf);
参数说明:
fstat()
用来将参数fildes所指的文件状态,复制到参数buf所指的结构中(struct stat)。
写个范例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <sys/stat.h> #include <unistd.h> //获取文件的大小 int get_file_size( int f) { struct stat st; fstat(f, &st); return st.st_size; } int main( void ) { int fd = open( "test.py" ,O_RDWR); int size ; if (fd < 0) { printf ( "open fair!\n" ); return -1 ; } size = get_file_size(fd) ; printf ( "size:%d字节--->%.2fK\n" ,size,( float )size/1024); return 0 ; } |
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对服务器之家的支持。如果你想了解更多相关内容请查看下面相关链接
原文链接:https://blog.csdn.net/morixinguan/article/details/73657224