C语言中对文件的随机存取
C语言中要实现对文件的随机存 取,需要用到两个函数fseek()、ftell()。下面通过 一个反转显示指定文件的程序来介绍这两个函数的用法。
r eserve.c:
#include <
stdio.h>
#include <
stdlib.h>
#define CNTL_Z '\032' / /DOS 文本中的文件结尾标记
#define SL EN 50
int main(int arg c, char *argv[])
{
c har file[SLEN];
char ch ;
FILE *fp;
long count, last;
p uts("Enter the name of the fil e to be processed: ");
gets(file);
if( (fp = f open(file, "rb")) == NULL ) //只读和二进制模式
{
printf("reverse can't open %s\n", file);
exit( 1);
}
f seek(fp, 0L, SEEK_SET);
//定位在文件开头处
la st = ftell(fp);
printf( "fseek(fp, 0L, SEEK_SET) , fte el(p): %d\n", last);
fseek(fp, 0L, SEEK_END);
//定位在文件结尾处
last = ftell(fp);
printf("fseek(fp, 0L, SEEK_END ) , fteel(p): %d\n", last);
for(count = 1L;
c ount <
= last;
count++)
{
fseek(fp, -cou nt, SEEK_END);
ch = getc(fp);
if(ch != CNTL_Z &
&
ch != '\r')
{
putchar(ch);
}
}
putchar ('\n');
fclose(fp);
system("PAUSE");
return 0;
}
假定一个文 件test.txt内容为:
1234567890
12345678 90
1234567890
1111111112
2222222223
3333333334
执行reserve来进行反转显示:
< br>
Enter the n ame of the file to be processe d:
test.txt
fseek(fp, 0L , SEEK_SET) , fteel(p): 0
f seek(fp, 0L, SEEK_END) , fteel (p): 72
4333333333
3222222222
2111111111
09 87654321
0987654321
0987 654321
下面,我们来解释一下fseek ()和ftell()是如何工作的。
l fseek()函数
fseek(移动文件流的读写位置)
相 关函数
rewind,ftell,fgetp os,fsetpos,lseek
表头 文件
#include<
stdio.h >
定义函数
i nt fseek(FILE * stream,long of fset,int whence);
函 数说明
fseek()用来移动文件流的读写位 置。参数stream为已打开的文件指针,参数offset为根 据参数whence来移动读写位置的位移数。
< br>参数
whence为下列其中一种:SE EK_SET从距文件开头offset位移量为新的读写位置。S EEK_CUR 以目前的读写位置往后增加offset个位移量 。SEEK_END将读写位置指向文件尾后再增加offset个 位移量。当whence值为SEEK_CUR 或SEEK_EN D时,参数offset允许负值的出现。下列是较特别的使用方式 :1) 欲将读写位置移动到文件开头时:fseek(FILE *stream,0,SEEK_SET);
2) 欲将读写位置移 动到文件尾时:fseek(FILE *stream,0,0S EEK_END);
返回值
< br>当调用成功时则返回0,若有错误则返回-1,errno会 存放错误代码。
附加说明
fseek()不像lseek()会返回读写位置,因此必须 使用ftell()来取得目前读写的位置。
l ftell()函数
ftell(取得文件流的读取位置)
< br>
相关函数
fseek,rewi nd,fgetpos,fsetpos
表头文件
#include<
stdio .h>
定义函数
long ftell(FILE * stream);
函数说明
ftell()用 来取得文件流目前的读写位置。参数stream为已打开的文件指 针。
返回值
当调用成 功时则返回目前的读写位置,若有错误则返回-1,errno会存 放错误代码。
错误代码
EBADF 参数stream无效或可移动读写位置的文件流。
范例
参考fseek ()。
通过fseek()、ftell()两 个函数,我们就可以随意访问文件的任何位置了,想了想好像操作文 件就这么easy,实在也没有更多可说的了。对了,fseek( )和ftell()存在一个潜在的问题就是他们限制文件的大小只 能在long类型的表示范围以内,也就是说通过这种方式,只能打 开2,000,000,000字节的文件,不过在绝大多数情况下 似乎也已经够用了。如果需要打开更大的文件,你需要用到fget pos()、fsetpos()函数了,那是另一个命题了。
from:
http://www.aonet.cn/artical/26/2005045581.htm