* 文件状态检查
A. 文件结束
(1) 函数原型
int feof(FILE *fp)
(2) 功能说明
该函数用来判断文件是否结束。
(3) 参数说明
fp:文件指针。
(4) 返回值
0:假值,表示文件未结束。
1:真值,表示文件结束。
(5) 实例
【例8.10】
#include <stdio.h>
void main(int argc,char *argv[])
{
FILE *in,*out;
char ch;
if(argc!=3)
{
printf("Usage: copyfile filename1 filename2\n");
return;
}
if((in=fopen(argv[1],"rb"))==NULL)
{
printf("The file %s can not be opened.\n",argv[1]);
return;
}
if((out=fopen(argv[2],"wb"))==NULL)
{
printf("The file %s can not be opened.\n",argv[2]);
return;
}
while(!feof(in))
{
ch=fgetc(in);
if(ferror(in))
{
printf("read error!\n");
clearerr(in);
}
else
{
fputc(ch,out);
if(ferror(out))
{
printf("write error!\n");
clearerr(out);
}
}
}
fclose(in);
fclose(out);
}
B. 文件读/写出错
(1) 函数原型
int ferror(FILE *fp)
(2) 功能说明
检查由fp指定的文件在读写时是否出错。
(3) 参数说明
fp:文件指针。
(4) 返回值
0:假值,表示无错误。
1:真值,表示出错。
C. 清除文件错误标志
(1) 函数原型
void clearerr(FILE *fp)
(2) 功能说明
清除由fp指定文件的错误标志。
(3) 参数说明
fp:文件指针。
(4) 返回值
无。
(5) 实例
【例8.12】
#include <stdio.h>
void main(int argc,char *argv[])
{
FILE *in,*out;
char ch;
if(argc!=3)
{
printf("Usage: copyfile filename1 filename2\n");
return;
}
if((in=fopen(argv[1],"rb"))==NULL)
{
printf("The file %s can not be opened.\n",argv[1]);
return;
}
if((out=fopen(argv[2],"wb"))==NULL)
{
printf("The file %s can not be opened.\n",argv[2]);
return;
}
while(!feof(in))
{
ch=fgetc(in);
if(ferror(in))
{
printf("read error!\n");
clearerr(in);
}
else
{
fputc(ch,out);
if(ferror(out))
{
printf("write error!\n");
clearerr(out);
}
}
}
fclose(in);
fclose(out);
}
D. 了解文件指针的当前位置
(1) 函数原型
long ftell(FILE *fp)
(2) 功能说明
取得由fp指定文件的当前读/写位置,该位置值用相对于文件开头的位移量来表示。
(3) 参数说明
fp:文件指针。
(4) 返回值
正常返回:位移量(这是个长整数)。
异常返回:-1,表示出错。
(5) 实例
* 文件定位
A. 反绕
(1) 函数原型
void rewind(FILE *fp)
(2) 功能说明
使由文件指针fp指定的文件的位置指针重新指向文件的开头位置。
(3) 参数说明
fp:文件指针。
(4) 返回值
无。
(5) 实例
【例8.14】
#include <stdio.h>
void main()
{
FILE *in,*out;
in=fopen("filename1","r");
out=fopen("filename2","w");
while(!feof(in)) fputc(fgetc(in),out);
rewind(out);
while(!feof(in)) putchar(fgetc(in));
fclose(in);
fclose(out);
}
B. 随机定位
(1) 函数原型
int fseek(FILE *fp,long offset,int base)
(2) 功能说明
使文件指针fp移到基于base的相对位置offset处。
(3)参数说明
fp:文件指针。
offset:相对base的字节位移量。这是个长整数,用以支持大于64KB的文件。
base:文件位置指针移动的基准位置,是计算文件位置指针位移的基点。ANSI C定义了base的可能取值,以及这些取值的符号常量。
(4)返回值
正常返回:当前指针位置。
异常返回:-1,表示定位操作出错。
(5)实例
【例8.15】
#include <stdio.h>
#include <string.h>
struct std_type
{
int num;
char name[20];
int age;
char class;
}stud;
int cstufile()
{
int i;
FILE *fp;
if((fp=fopen("stufile","wb"))==NULL)
{
printf("The file can't be opened for write.\n");
return 0;
}
for(i=1;i<=100;i++)
{
stud.num=i;
strcpy(stud.name,"aaaa");
stud.age=17;
stud.class='8';
fwrite(&stud,sizeof(struct std_type),1,fp);
}
fclose(fp);
return 1;
}
void main()
{
int n;
FILE *fp;
if(cstufile()==0) return;
if((fp=fopen("stufile","rb"))==NULL)
{
printf("The file can not be opened.\n");
return;
}
for(n=0;n<100;n+=2)
{
fseek(fp,n*sizeof(struct std_type),SEEK_SET);
fread(&stud,sizeof(struct std_type),1,fp);
printf("%10d%20s%10d%4c\n",stud.num,stud.name,stud.age,stud.class);
}
fclose(fp);
}
|