C 中的 ferror() 函数
原型:
int ferror(FILE *filename);
参数:
FILE *filename
返回类型:整数(0 或 1)
函数的使用:
如果在最后一次文件操作中该文件中引入了一些错误,则通过 ferror() 函数我们可以识别在最后一次操作期间该文件中存在一些错误。 ferror() 函数的原型是int ferror(FILE* filename);
但是只检测文件的最后一次操作错误,因为每次都设置文件的错误标志。
C 中的 ferror() 示例
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE* f;
char str[100];
//Check the existence of that file
if ((f = fopen("includehelp.txt", "r")) == NULL) {
printf("Cannot open the file...");
//if not exist program is terminated
exit(1);
}
// Check if here is some error in the file
if (ferror(f))
printf("Error to read the file\n");
else
printf("No error in reading\n");
printf("File content is--\n");
//print the strings until EOF is encountered
while (!feof(f)) {
fgets(str, 100, f);
//print the string
printf("%s", str);
}
//close the opened file
fclose(f);
return 0;
}
输出
相关用法
- C语言 feof()用法及代码示例
- C语言 fread()用法及代码示例
- C语言 fillellipse()用法及代码示例
- C语言 fgets()用法及代码示例
- C语言 freopen()用法及代码示例
- C语言 frexp()用法及代码示例
- C语言 fclose()用法及代码示例
- C语言 fseek() vs rewind()用法及代码示例
- C语言 fflush()用法及代码示例
- C语言 fgetc()用法及代码示例
- C语言 fputc()用法及代码示例
- C语言 fputs()用法及代码示例
- C语言 fillpoly()用法及代码示例
- C语言 ftell()用法及代码示例
- C语言 fseek()用法及代码示例
- C语言 fgets() and gets()用法及代码示例
- C语言 fscanf()用法及代码示例
- C语言 fgetc() and fputc()用法及代码示例
- C语言 fwrite()用法及代码示例
- C语言 fork()用法及代码示例
注:本文由纯净天空筛选整理自Souvik Saha大神的英文原创作品 ferror() function in C language with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。