使用文件我们可以将数据直接存放在电脑的硬盘上,做到数据的持久化
在程序设计中,我们一般谈的文件有两种:程序文件和数据文件(从文件功能的角度来分类)
包括源程序文件(后缀为.c),目标文件(Windows环境后缀为.obj),可执行文件(Windows环境后缀为.exe)
文件的内容不一定是程序,而是程序运行时读写的数据,比如程序运行需要从中读取数据的文件,或者输出内容的文件
本文讨论的是数据文件
缓冲文件系统中,关键的概念是"文件类型指针",简称"文件指针"
每个被使用的文件都在内存中开辟了一个相应的文件信息区,用来存放文件的相关信息(如文件的名字,文件的状态及文件当前的位置等).这些信息是保存在一个结构体变量中的.该结构体类型是由系统声明的,取名FILE
每当打开一个文件,系统会根据文件的情况自动创建一个FILE结构的变量,并填充其中的信息,使用者不必关心细节.
一般都是通过一个FILE的指针来维护这个FILE结构的变量,这样使用起来更方便.
文件在读写之前应先打开文件,在使用结束之后应该关闭文件.
在编写程序的时候,在打开文件的同时,都会返回一个FILE*类型的指针指向该文件,相当于建立了指针和文件的关系
ANSIC规定使用fopen函数来打开文件,fclose来关闭文件
//打开文件
FILE* fopen(const char* filename, const char* mode);
//关闭文件
int fclose(FILE* stream);
fopen第二个参数是打开方式
打开方式 | 含义 | 如果指定文件不存在 |
---|---|---|
“r”(只读) | 为了输入数据,打开一个已经存在的文本文件 | 出错 |
“w”(只写) | 为了输出数据,打开一个文本文件,如果文件存在, 每次打开文件时,会清空原有内容 | 建立一个新的文件 |
“a”(追加) | 向文本文件尾添加数据 | 建立一个新的文件 |
“rb”(只读) | 为了输入数据,打开一个二进制文件 | 出错 |
“wb”(只写) | 为了输出数据,打开一个二进制文件 | 建立一个新的文件 |
“ab”(追加) | 向一个二进制文件尾添加数据 | 建立一个新的文件 |
“r+”(读写) | 为了读与写,打开一个文本文件,如果文件存在,每次打开文件时, 从文件起始位置开始读写,写的时候会覆盖原有内容,未覆盖部分保留 | 出错 |
“w+”(读写) | 为了读与写,打开一个文本文件,如果文件存在, 每次打开文件时,会清空原有内容 | 建立一个新的文件 |
“a+”(读写) | 打开一个文件,在文件尾进行读写 | 建立一个新的文件 |
“rb+”(读写) | 为了读与写打开一个二进制文件 | 出错 |
“wb+”(读写) | 为了读与写,新建一个新的二进制文件 | 建立一个新的文件 |
“ab+”(读写) | 打开一个二进制文件,在文件尾进行读和写 | 建立一个新的文件 |
fopen第一个参数是文件路径
1.相对路径
#include
int main()
{
FILE* pf = fopen("test.txt", "w");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//...
fclose(pf);
pf = NULL;
return 0;
}
将文件放在上一级目录
第一个参数就可以改成
"..\\test.txt"
或者是
./../test.txt
意思是当前目录的上级目录的test.txt
\\和/是一样的,只是\不要让它转义
功能 | 函数名 | 适用于 |
---|---|---|
字符输入函数 | fgetc | 所有输入流 |
字符输出函数 | fputc | 所有输出流 |
文本行输入函数 | fgets | 所有输入流 |
文本行输出函数 | fputs | 所有输出流 |
格式化输入函数 | fscanf | 所有输入流 |
格式化输出函数 | fprintf | 所有输出流 |
二进制输入 | fread | 文件 |
二进制输出 | fwrite | 文件 |
从数据到外部设备经过流
所以我们写文件的时候要打开文件,关闭文件
所有输入流包括:文件流和标准输入流(stdin)
所有输出流包括:文件流和标准输出流(stdout)
scanf从键盘上读取数据
printf向屏幕打印数据
直接就操作了不经过流是因为:
C语言程序只要运行起来,默认打开三个流:
将字符写入流
int fputc ( int character, FILE * stream );
代码示例:
#include
int main()
{
FILE* pf = fopen("text.txt", "w");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//写文件
char ch = 0;
for (ch = 'a'; ch <= 'z'; ch++)
{
fputc(ch, pf);
}
fclose(pf);
pf = NULL;
return 0;
}
从流中获取字符
int fgetc ( FILE * stream );
代码示例:
读取上面用fputc写的文件
#include
int main()
{
FILE* pf = fopen("text.txt", "r");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//读文件
int ch = 0;
while ((ch = fgetc(pf)) != EOF)
{
printf("%c ",ch);
}
fclose(pf);
pf = NULL;
return 0;
}
将字符串写入流
int fputs ( const char * str, FILE * stream );
代码示范:
#include
int main()
{
FILE* pf = fopen("data.txt", "w");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//写文件
fputs("hello ", pf);
fputs("world", pf);
fclose(pf);
pf = NULL;
return 0;
}
#include
int main()
{
fputs("hello ", stdout);
fputs("world", stdout);
return 0;
}
从流中获取字符串
char * fgets ( char * str, int num, FILE * stream );
代码示范:
读取上面
#include
int main()
{
FILE* pf = fopen("data.txt", "r");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//读文件
char arr[100] = { 0 };
fgets(arr, 100, pf);
fclose(pf);
pf = NULL;
return 0;
}
#include
int main()
{
FILE* pf = fopen("data.txt", "r");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//读文件
char arr[100] = { 0 };
fgets(arr, 10, pf);
fclose(pf);
pf = NULL;
return 0;
}
将格式化数据写入流
int fprintf ( FILE * stream, const char * format, ... );
代码示范:
#include
struct S
{
float f;
char c;
int m;
};
int main()
{
struct S s = { 3.14f,'w',100 };
FILE* pf = fopen("data.txt", "w");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//写文件
fprintf(pf, "%f,%c,%d", s.f, s.c,s.m);
fclose(pf);
pf = NULL;
return 0;
}
从流中读取格式化数据
int fscanf ( FILE * stream, const char * format, ... );
代码示范:
读取前面fprintf写入的数据
#include
struct S
{
float f;
char c;
int m;
};
int main()
{
struct S s = { 0 };
FILE* pf = fopen("data.txt", "r");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//读文件
fscanf(pf, "%f,%c,%d", &(s.f), &(s.c), &(s.m));
printf("%f,%c,%d", s.f, s.c, s.m);
fclose(pf);
pf = NULL;
return 0;
}
#include
int main()
{
int arr[] = { 1,2,3,4,5,6,7,8,9,10 };
FILE* pf = fopen("data.txt", "wb");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//二进制的写文件
fwrite(arr, sizeof(arr[0]), sizeof(arr) / sizeof(arr[0]), pf);
fclose(pf);
pf = NULL;
return 0;
}
#include
int main()
{
int arr[20] = { 0 };
FILE* pf = fopen("data.txt", "rb");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//二进制的读文件
fread(arr, sizeof(arr[0]), sizeof(arr) / sizeof(arr[0]), pf);
int i = 0;
for (i = 0; i < 20; i++)
printf("%d ", arr[i]);
fclose(pf);
pf = NULL;
return 0;
}
scanf/fscanf/sscanf
printf/fprintf/sprintf
从字符串中读取格式化数据
将格式化数据写入字符串
代码示例:
#include
struct S
{
float f;
char c;
int m;
};
int main()
{
struct S s = { 3.14f,'c',100 };
char arr[100] = { 0 };
sprintf(arr, "%f-%c-%d", s.f, s.c, s.m);
printf("%s\n", arr);
struct S tmp = { 0 };
sscanf(arr,"%f-%c-%d", &(tmp.f), &(tmp.c), &(tmp.m));
printf("%f\n", tmp.f);
printf("%c\n", tmp.c);
printf("%d\n", tmp.m);
return 0;
}
根据位置和偏移量来改变位置指针
int fseek ( FILE * stream, long int offset, int origin );
代码示例:
在当前目录下新建text.txt文件,写入abcdef
#include
int main()
{
FILE* pf = fopen("text.txt", "r");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//读文件
int ch = fgetc(pf);
printf("%c\n", ch);//a
ch = fgetc(pf);
printf("%c\n", ch);//b
ch = fgetc(pf);
printf("%c\n", ch);//c
fseek(pf, -3, SEEK_CUR);
ch = fgetc(pf);
printf("%c\n", ch);//a
fclose(pf);
pf = NULL;
return 0;
}
fseek(pf, -3, SEEK_CUR);
可以改成
fseek(pf, 0, SEEK_SET);
效果是一样的
返回位置指针相对于起始位置的偏移量
long int ftell ( FILE * stream );
代码示例:
#include
int main()
{
FILE* pf = fopen("text.txt", "r");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//读文件
int ch = fgetc(pf);
printf("%c\n", ch);//a
ch = fgetc(pf);
printf("%c\n", ch);//b
ch = fgetc(pf);
printf("%c\n", ch);//c
int pos = ftell(pf);
printf("pos = %d", pos);
fclose(pf);
pf = NULL;
return 0;
}
让位置指针的位置回到文件的起始位置
void rewind ( FILE * stream );
代码示例:
#include
int main()
{
FILE* pf = fopen("text.txt", "r");
if (pf == NULL)
{
perror("fopen");
return 1;
}
//读文件
int ch = fgetc(pf);
printf("%c\n", ch);//a
ch = fgetc(pf);
printf("%c\n", ch);//b
ch = fgetc(pf);
printf("%c\n", ch);//c
rewind(pf);
ch = fgetc(pf);
printf("%c\n", ch);//a
fclose(pf);
pf = NULL;
return 0;
}
根据数据的组织形式,数据文件被称为文本文件或者二进制文件.
一个数据在内存中怎么存储的呢?
字符一律以ascll形式存储,数值型数据既可以用ascll形式存储,也可以用二进制形式存储.
如整数10000,如果以ascll码的形式输出到磁盘,则磁盘中占用5个字节(每个字符一个字节),而二进制形式输出,则在磁盘上只占4个字节(vs2013测试)
二进制的00110001是十进制的49,正好对应ascll码表的1
牢记:在文件读取过程中,不能用feof函数的返回值直接来判断文件是否结束
feof的作用是:当文件读取结束的时候,判断读取结束的原因是否是:遇到文件尾结束.
与feof无关
1.判断文本文件读取是否结束,判断返回值是否为EOF(fgetc),或者NULL(fgets)
fgetc:当读取失败的时候或者遇到文件结束的时候都会返回EOF
2.二进制文件的读取结束判断,判断返回值是否小于实际要读的个数
例如:
fread要求读取count个大小为size字节的数据
- 如果真的读取到count个数据,函数返回count
- 如果没有读取到count个数据,返回的是真实的读取到的完整的数据个数
写代码完成文件的拷贝
从 data1.txt 拷贝到 data2.txt
#include
int main()
{
FILE* pfread = fopen("data1.txt", "r");
if (!pfread)
{
perror("fopen");
return 1;
}
FILE* pfwrite = fopen("data2.txt", "w");
if (!pfwrite)
{
perror("fopen");
fclose(pfread);
pfread = NULL;
return 1;
}
//拷贝数据
int ch = 0;
while ((ch = fgetc(pfread)) != EOF)
{
fputc(ch, pfwrite);
}
//判断什么原因结束的
if (ferror(pfread))
puts("I/O error when reading");
else if (feof(pfread))
puts("End of file reached successfully");
fclose(pfread);
pfread = NULL;
fclose(pfwrite);
pfwrite = NULL;
return 0;
}
#include
int main()
{
char ch1[100] = { 0 }, ch2[100] = { 0 };
scanf("%s", ch1);//用于存放文件名
scanf("%s", ch2);//用于存放文件名
FILE* pfread = fopen(ch1, "r");
if (!pfread)
{
perror("fopen1");
return 1;
}
FILE* pfwrite = fopen(ch2, "w");
if (!pfwrite)
{
perror("fopen2");
fclose(pfread);
pfread = NULL;
return 1;
}
//拷贝数据
while (!feof(pfread))
{
fputc(fgetc(pfread),pfwrite);
}
fclose(pfread);
pfread = NULL;
fclose(pfwrite);
pfwrite = NULL;
return 0;
}
ANSIC 标准采用"缓冲文件系统"处理数据文件,所谓缓冲文件系统是指系统自动地在内存中为程序中每一个正在使用的文件开辟一块"文件缓冲区".从内存向磁盘输出数据会先送到内存中的缓冲区,装满缓冲区后才一起送到磁盘上.如果从磁盘向计算机读入数据,则从磁盘文件中读取数据输入到内存缓冲区(充满缓冲区),然后再从缓冲区逐个地将数据送到程序数据区(程序变量等).缓冲区的大小根据C编译系统决定.
两种情况数据会离开缓冲区
验证缓冲区
#include
#include
int main()
{
FILE* pf = fopen("text.txt", "w");
if (!pf)
{
perror("fopen");
return 1;
}
fputs("abcdef", pf);//先将代码放入缓冲区
printf("睡眠10秒,打开text.txt文件,发现文件没有内容\n");
Sleep(10000);
printf("刷新缓冲区\n");
fflush(pf);//刷新缓冲区时,才将输出缓冲区的数据写到文件(磁盘)
fclose(pf);
//注意:fclose在关闭文件的时候,也会刷新缓冲区
pf = NULL;
return 0;
}
因为缓冲区的存在,C语言在操作文件的时候,需要做刷新缓冲区或者在文件操作结束的时候关闭文件
如果不做,可能导致读写文件的问题