码迷,mamicode.com
首页 > 其他好文 > 详细

how to write a struct to a file directly?

时间:2014-09-30 14:35:19      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   sp   div   c   

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?

标签:style   blog   color   io   os   ar   sp   div   c   

原文地址:http://www.cnblogs.com/miaoz/p/4001835.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!