1
|
int fseek ( FILE * _File, long _Offset, int _Origin);
|
函数设置文件指针stream的位置。如果执行成功,stream将指向以fromwhere为基准,偏移offset(指针偏移量)个字节的位置,函数返回0。如果执行失败则不改变stream指向的位置,函数返回一个非0值。
超出文件末尾位置,还是返回0。往回偏移超出首位置,还是返回0,小心使用。
第一个参数stream为文件指针。
第二个参数offset为偏移量,正数表示正向偏移,负数表示负向偏移。
第三个参数origin设定从文件的哪里开始偏移,可能取值为:SEEK_CUR、SEEK_END或SEEK_SET。
SEEK_SET:文件开头
SEEK_CUR:当前位置
SEEK_END:文件结尾
eg:
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
#include<stdio.h>
#define N 5
typedef struct student{
long sno;
char name[10];
float score[3];
}STU;
void fun( char *filename,STU n)
{
FILE *fp;
fp= fopen (filename, "rb+" );
fseek (fp,-1L* sizeof (STU),SEEK_END);
fwrite (&n, sizeof (STU),1,fp);
fclose (fp);
}
int main() /*修改覆盖最后一个学生数据*/
{
STU t[N]={
{10001, "MaChao" ,91,92,77},
{10002, "CaoKai" ,75,60,88},
{10003, "LiSi" ,85,70,78},
{10004, "FangFang" ,90,82,87},
{10005, "ZhangSan" ,95,80,88}
};
STU n={10006, "ZhaoSi" ,55,70,68},ss[N];
int i,j; FILE *fp;
fp= fopen ( "student.dat" , "wb" );
fwrite (t, sizeof (STU),N,fp);
fclose (fp);
fp= fopen ( "student.dat" , "rb" );
fread (ss, sizeof (STU),N,fp);
fclose (fp);
printf ( "\nThe original data:\n\n" );
for (j=0;j<N;j++)
{
printf ( "\nNo:%ldName:%-8sScores:" ,ss[j].sno,ss[j].name);
for (i=0;i<3;i++)
printf ( "%6.2f" ,ss[j].score[i]);
printf ( "\n" );
}
fun( "student.dat" ,n);
printf ( "\nThe data after modifing:\n\n" );
fp= fopen ( "student.dat" , "rb" );
fread (ss, sizeof (STU),N,fp);
fclose (fp);
for (j=0;j<N;j++)
{
printf ( "\nNo:%ldName:%-8sScores:" ,ss[j].sno,ss[j].name);
for (i=0;i<3;i++)
printf ( "%6.2f" ,ss[j].score[i]);
printf ( "\n" );
}
return 0;
}
|
ftell函数
ftell函数用于得到文件位置指针当前位置相对与文件首的偏移字节数。在随机方式存取文件时,由于文件位置频繁的前后移动,程序不容易确定文件的当前位置。
1
|
long len = ftell (fp)
|
eg1:
1
2
3
4
5
6
7
8
9
10
11
|
#include <stdio.h>
int main( void )
{
FILE *stream;
stream = fopen ( "MYFILE.TXT" , "w+" );
fprintf ( stream, "This is a test" );
printf ( "The file pointer is at byte \
%ld\n", ftell ( stream ) );
fclose ( stream );
return (0);
}
|
eg2:
ftell一般用于读取文件的长度,下面补充一个例子,读取文本文件中的内容:
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
26
27
28
29
|
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE *fp;
int flen;
char *p;
/* 以只读方式打开文件 */
if ( (fp = fopen ( "1.txt" , "r" ) ) == NULL )
{
printf ( "\nfile open error\n" );
exit ( 0 );
}
fseek ( fp, 0L, SEEK_END ); /* 定位到文件末尾 */
flen = ftell ( fp ); /* 得到文件大小 */
p = ( char *) malloc ( flen + 1 ); /* 根据文件大小动态分配内存空间 */
if ( p == NULL )
{
fclose ( fp );
return (0);
}
fseek ( fp, 0L, SEEK_SET ); /* 定位到文件开头 */
fread ( p, flen, 1, fp ); /* 一次性读取全部文件内容 */
p[flen] = '\0' ; /* 字符串结束标志 */
printf ( "%s" , p );
fclose ( fp );
free ( p );
return (0);
}
|
程序改进
1
2
3
4
5
6
7
8
9
10
11
|
#include <stdio.h>
main()
{
FILE *myf;
long f1; /* 此处将f1设置为long 可以读取更长的文件 */
myf = fopen ( "1.txt" , "rb" );
fseek ( myf, 0, SEEK_END );
f1 = ftell ( myf );
fclose ( myf );
printf ( “ % d \ n ”, f1 );
}
|