構造体全体をファイルに書き込むことは可能ですか?
例:
struct date {
char day[80];
int month;
int year;
};
構造体全体をファイルに書き込むことは可能ですか?
あなたの質問は、実際に構造体インスタンスをファイルに書き込むことです。
fwrite
関数を使用できます。sizeof
2番目の引数の各オブジェクトbinary mode
でファイルを開くことを忘れないでください。リトルエンディアンシステムで書き込み/読み取りを行う場合、およびビッグエンディアンシステムで読み取り/書き込みを行う場合は、エンディアンに注意してください。読み取り how-to-write-endian-agnostic-c-c-code
struct date *object=malloc(sizeof(struct date));
strcpy(object->day,"Good day");
object->month=6;
object->year=2013;
FILE * file= fopen("output", "wb");
if (file != NULL) {
fwrite(object, sizeof(struct date), 1, file);
fclose(file);
}
それらは同じ方法で読むことができます... fread
を使用して
struct date *object2=malloc(sizeof(struct date));
FILE * file= fopen("output", "rb");
if (file != NULL) {
fread(object2, sizeof(struct date), 1, file);
fclose(file);
}
printf("%s/%d/%d\n",object2->day,object2->month,object2->year);