[C++][IO]读写二进制文件

2022-05-07 18:32:09 浏览数 (1)

1. 以二进制方式读写结构体

代码语言:javascript复制
struct Student
{
	string name;
	string sex;
	int age;
}

void write(string filePath, const struct Student* stu, int n)
{
	FILE *fp;
	int i;
	if((fp=fopen(filePath,"wb"))==NULL)
	{
		printf("cant open the file");
		return;
	}
	for(i=0;i<n;i  )
	{
		if(fwrite(&stu[i],sizeof(struct Student),1,fp)!=1)
		printf("file write errorn");
	}
	fclose(fp);
}

void read(string filePath, const struct Student* stu, int n)
{
	FILE *fp;
	int i;
	if((fp=fopen(filePath,"rb"))==NULL)
	{
		printf("cant open the file");
		return;
	}
	for(i=0;i<n;i  )
	{
		if(fread(&stu[i],sizeof(struct Student),1,fp)!=1)
		printf("file read errorn");
	}
	fclose(fp);
} 

0 人点赞