首页 > 代码库 > how to write a struct to a file directly?
how to write a struct to a file directly?
Using write and read system call. Following is an example:
blk.h:
#include <stdlib.h>#include <stdio.h>#include <fcntl.h>#include <sys/types.h>#include <sys/stat.h>#include <string.h>struct data{ char s[20]; int d1; char c;};#define BLK_SIZE 25
writeb.c:
#include "blk.h"int main(){ struct data *d= malloc(BLK_SIZE); d->d1= 8; d->c= ‘a‘; strcpy(d->s, "first try.."); int fd= open("blk.dat", O_RDWR | O_CREAT | O_EXCL, S_IREAD | S_IWRITE); write(fd, d, BLK_SIZE); printf("writed!\n"); close(fd); return 0;}
readb.c:
include "blk.h"int main(){ int fd; struct data *d; fd= open("blk.dat", O_RDWR); read(fd, d, BLK_SIZE); printf("%d, %c, %s\n", d->d1, d->c, d->s); close(fd); return 0;}
how to write a struct to a file directly?
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。