Quantcast
Channel: CSDN博客推荐文章
Viewing all articles
Browse latest Browse all 35570

fopen vs fopen64

$
0
0

fopen64是linux特有 的,fopen64()函数fopen()函数相同的,只是底层的文件描述符创建是带有O_LARGEFILE标志 fopen64()函数为了加载大型文件所做的扩展

fopen returns FILE*, stream.
fopen64 returns int, file descriptor

      通常情况下,我们用fopen()函数来读问件,但是当文件超过2GB的时候,fopen()将不能读取那个文件,但是fopen64()可以。
      但是如果用fopen()函数读文件,编译的时候加上-D_FILE_OFFSET_BITS=64指令,则获得的效果和fopen64()是一样的,因此,我们一般建议用fopen()函数,因为它更具有通用性,fopen64()是non-standard,fopen是standard函数。



参考文献:

http://cboard.cprogramming.com/c-programming/149806-difference-between-fopen-fopen64.html

http://www.mkssoftware.com/docs/man3/fopen.3.asp

http://forum.ubuntu.org.cn/viewtopic.php?t=23741

作者:fulva 发表于2012-12-28 20:35:41 原文链接
阅读:51 评论:0 查看评论

Viewing all articles
Browse latest Browse all 35570

Trending Articles