本文继续学习文件操作的相关知识,主要内容有:
根据文件指针的位置和偏移量来定位文件指针,函数原型:
int fseek ( FILE * stream, long int offset, int origin );
int main()
{
//打开文件
FILE* pf = fopen("test1.txt", "r");//abcdef
//判断
if (pf == NULL)
{
perror("fopen");
return 1;
}
//写文件操作,
int ch = fgetc(pf);
printf("%c\n", ch);//a
ch = fgetc(pf);
printf("%c\n", ch);//b
//调整指针的位置
//fseek(pf, 2, SEEK_SET); //指针开始位置是a,向后移2,指向c
fseek(pf, 2, SEEK_CUR); //指针当前位置是c,向后移2,指向e
//fseek(pf, -2, SEEK_END); //指针末尾位置是f后面,向前移2,指向e
ch = fgetc(pf);
printf("%c\n", ch);//e
//关闭文件
fclose(pf);
pf = NULL;
return 0;
}
返回文件指针相对于起始位置的偏移量,函数原型:
long int ftell ( FILE * stream );
int main()
{
FILE* pf = fopen("test2.txt", "w");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//写文件
fputc('a', pf);
fputc('b', pf);
fputc('c', pf);
fputc('d', pf);
fseek(pf, -3, SEEK_CUR);
fputc('w', pf);
long pos = ftell(pf);//返回文件指针相对于起始位置的偏移量
printf("%ld\n", pos);
fclose(pf);
pf = NULL;
return 0;
}
int main()
{
FILE* pf = fopen("test2.txt", "w");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//写文件
fputc('a', pf);
fputc('b', pf);
fputc('c', pf);
fputc('d', pf);
fseek(pf, -3, SEEK_CUR);
fputc('w', pf);
//文件指针的位置回到文件的起始位置
rewind(pf);
long pos = ftell(pf);//返回文件指针相对于起始位置的偏移量
printf("%ld\n", pos);
fclose(pf);
pf = NULL;
return 0;
}
一个数据在内存中是怎么存储的呢?
例如整数10000:
int main()
{
int a = 10000;
FILE* pf = fopen("test2.txt", "wb");
fwrite(&a, 4, 1, pf);//二进制的形式写到文件中
fclose(pf);
pf = NULL;
return 0;
}
1、文本文件读取是否结束,判断返回值是否为 EOF ( fgetc ),或者 NULL ( fgets )
2、二进制文件的读取结束判断,判断返回值是否小于实际要读的个数
文本文件的例子:
int main(void)
{
int c; // 注意:int,非char,要求处理EOF
FILE* fp = fopen("test.txt", "r");
if (!fp) {
perror("File opening failed");
return 1;
}
//fgetc 当读取失败的时候或者遇到文件结束的时候,都会返回EOF
while ((c = fgetc(fp)) != EOF) // 标准C I/O读取文件循环
{
putchar(c);
}
//判断是什么原因结束的
if (ferror(fp))//读取失败
puts("I/O error when reading");
else if (feof(fp))//正常遇到文件尾结束
puts("End of file reached successfully");
fclose(fp);
fp = NULL;
return 0;
}
二进制文件的例子:
enum { SIZE = 5 };
int main(void)
{
double a[SIZE] = { 1.,2.,3.,4.,5. };
FILE *fp = fopen("test.bin", "wb"); // 必须用二进制模式
fwrite(a, sizeof *a, SIZE, fp); // 写 double 的数组
fclose(fp);
double b[SIZE];
fp = fopen("test.bin", "rb");
size_t ret_code = fread(b, sizeof *b, SIZE, fp); // 读 double 的数组
if (ret_code == SIZE)
{
puts("Array read successfully, contents: ");
for (int n = 0; n < SIZE; ++n)
printf("%f ", b[n]);
putchar('\n');
}
else
{ // error handling
if (feof(fp))
printf("Error reading test.bin: unexpected end of file\n");
else if (ferror(fp)) {
perror("Error reading test.bin");
}
}
fclose(fp);
fp = NULL;
return 0;
}
#include
//VS2013 WIN10环境测试
int main()
{
FILE*pf = fopen("test.txt", "w");
fputs("abcdef", pf);//先将代码放在输出缓冲区
printf("睡眠10秒-已经写数据了,打开test.txt文件,发现文件没有内容\n");
Sleep(10000);
printf("刷新缓冲区\n");
//刷新缓冲区时,才将输出缓冲区的数据写到文件(磁盘)
fflush(pf);//注:fflush 在高版本的VS上不能使用了
printf("再睡眠10秒-此时,再次打开test.txt文件,文件有内容了\n");
Sleep(10000);
fclose(pf);
//注:fclose在关闭文件的时候,也会刷新缓冲区
pf = NULL;
return 0;
}
文件操作的相关内容的学习将暂时告一段落了。这一部分内容以后运用较少,但是嵌入式、工业软件经常保存数据写小论文应该用的多。
初步学习要了解大概,随着不断地使用、查阅资料才能熟练掌握。
下一篇将学习程序环境和预处理相关的知识点。